@@ -82,7 +82,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
82
82
} ,
83
83
SubTitleToolTip = Context . API . GetTranslation ( "plugin_explorer_contextmenu_titletooltip" ) ,
84
84
TitleToolTip = Context . API . GetTranslation ( "plugin_explorer_contextmenu_titletooltip" ) ,
85
- IcoPath = Constants . QuickAccessImagePath
85
+ IcoPath = Constants . QuickAccessImagePath ,
86
+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue718 " ) ,
86
87
} ) ;
87
88
}
88
89
else
@@ -107,7 +108,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
107
108
} ,
108
109
SubTitleToolTip = Context . API . GetTranslation ( "plugin_explorer_contextmenu_remove_titletooltip" ) ,
109
110
TitleToolTip = Context . API . GetTranslation ( "plugin_explorer_contextmenu_remove_titletooltip" ) ,
110
- IcoPath = Constants . RemoveQuickAccessImagePath
111
+ IcoPath = Constants . RemoveQuickAccessImagePath ,
112
+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\uecc9 " )
111
113
} ) ;
112
114
}
113
115
@@ -130,7 +132,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
130
132
return false ;
131
133
}
132
134
} ,
133
- IcoPath = Constants . CopyImagePath
135
+ IcoPath = Constants . CopyImagePath ,
136
+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue8c8 " )
134
137
} ) ;
135
138
136
139
contextMenus . Add ( new Result
@@ -156,7 +159,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
156
159
}
157
160
158
161
} ,
159
- IcoPath = icoPath
162
+ IcoPath = icoPath ,
163
+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\uf12b " )
160
164
} ) ;
161
165
162
166
@@ -199,7 +203,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
199
203
200
204
return true ;
201
205
} ,
202
- IcoPath = Constants . DeleteFileFolderImagePath
206
+ IcoPath = Constants . DeleteFileFolderImagePath ,
207
+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue74d " )
203
208
} ) ;
204
209
205
210
if ( record . Type is not ResultType . Volume )
@@ -297,7 +302,8 @@ private Result CreateOpenContainingFolderResult(SearchResult record)
297
302
298
303
return true ;
299
304
} ,
300
- IcoPath = Constants . FolderImagePath
305
+ IcoPath = Constants . FolderImagePath ,
306
+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue838 " )
301
307
} ;
302
308
}
303
309
0 commit comments