@@ -82,7 +82,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
8282 } ,
8383 SubTitleToolTip = Context . API . GetTranslation ( "plugin_explorer_contextmenu_titletooltip" ) ,
8484 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 " ) ,
8687 } ) ;
8788 }
8889 else
@@ -107,7 +108,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
107108 } ,
108109 SubTitleToolTip = Context . API . GetTranslation ( "plugin_explorer_contextmenu_remove_titletooltip" ) ,
109110 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 " )
111113 } ) ;
112114 }
113115
@@ -130,7 +132,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
130132 return false ;
131133 }
132134 } ,
133- IcoPath = Constants . CopyImagePath
135+ IcoPath = Constants . CopyImagePath ,
136+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue8c8 " )
134137 } ) ;
135138
136139 contextMenus . Add ( new Result
@@ -156,7 +159,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
156159 }
157160
158161 } ,
159- IcoPath = icoPath
162+ IcoPath = icoPath ,
163+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\uf12b " )
160164 } ) ;
161165
162166
@@ -199,7 +203,8 @@ public List<Result> LoadContextMenus(Result selectedResult)
199203
200204 return true ;
201205 } ,
202- IcoPath = Constants . DeleteFileFolderImagePath
206+ IcoPath = Constants . DeleteFileFolderImagePath ,
207+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue74d " )
203208 } ) ;
204209
205210 if ( record . Type is not ResultType . Volume )
@@ -297,7 +302,8 @@ private Result CreateOpenContainingFolderResult(SearchResult record)
297302
298303 return true ;
299304 } ,
300- IcoPath = Constants . FolderImagePath
305+ IcoPath = Constants . FolderImagePath ,
306+ Glyph = new GlyphInfo ( FontFamily : "/Resources/#Segoe Fluent Icons" , Glyph : "\ue838 " )
301307 } ;
302308 }
303309
0 commit comments