File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Flow.Launcher.Infrastructure Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ public static class Constant
32
32
public static readonly string MissingImgIcon = Path . Combine ( ImagesDirectory , "app_missing_img.png" ) ;
33
33
public static readonly string LoadingImgIcon = Path . Combine ( ImagesDirectory , "loading.png" ) ;
34
34
public static readonly string ImageIcon = Path . Combine ( ImagesDirectory , "image.png" ) ;
35
+ public static readonly string HistoryIcon = Path . Combine ( ImagesDirectory , "history.png" ) ;
35
36
36
37
public static string PythonPath ;
37
38
public static string NodePath ;
Original file line number Diff line number Diff line change @@ -1075,6 +1075,11 @@ private void QueryHistory()
1075
1075
Title = string . Format ( title , h . Query ) ,
1076
1076
SubTitle = string . Format ( time , h . ExecutedDateTime ) ,
1077
1077
IcoPath = "Images\\ history.png" ,
1078
+ Preview = new Result . PreviewInfo
1079
+ {
1080
+ PreviewImagePath = Constant . HistoryIcon ,
1081
+ Description = string . Format ( time , h . ExecutedDateTime )
1082
+ } ,
1078
1083
OriginQuery = new Query { RawQuery = h . Query } ,
1079
1084
Action = _ =>
1080
1085
{
You can’t perform that action at this time.
0 commit comments