diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs index 2675d857edc..4cbe01c97aa 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs @@ -339,6 +339,7 @@ private Result CreateOpenWithEditorResult(SearchResult record, string editorPath return false; } }, + Glyph = new GlyphInfo(FontFamily: "/Resources/#Segoe Fluent Icons", Glyph: "\ue70f"), IcoPath = Constants.FileImagePath }; } @@ -371,7 +372,8 @@ private Result CreateOpenWithShellResult(SearchResult record) return false; } }, - IcoPath = Constants.FileImagePath + Glyph = new GlyphInfo(FontFamily: "/Resources/#Segoe Fluent Icons", Glyph: "\ue756"), + IcoPath = Constants.FolderImagePath }; } @@ -437,7 +439,7 @@ private Result CreateOpenWindowsIndexingOptions() }; } - public void LogException(string message, Exception e) + private void LogException(string message, Exception e) { Log.Exception($"|Flow.Launcher.Plugin.Folder.ContextMenu|{message}", e); }