From 181b020b31ed96940a19d13fd2d481010a273126 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Tue, 3 Jan 2023 01:37:01 +0800 Subject: [PATCH] Add glyph for open with editor/shell --- Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs index 2675d857e..4cbe01c97 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs @@ -339,6 +339,7 @@ namespace Flow.Launcher.Plugin.Explorer return false; } }, + Glyph = new GlyphInfo(FontFamily: "/Resources/#Segoe Fluent Icons", Glyph: "\ue70f"), IcoPath = Constants.FileImagePath }; } @@ -371,7 +372,8 @@ namespace Flow.Launcher.Plugin.Explorer return false; } }, - IcoPath = Constants.FileImagePath + Glyph = new GlyphInfo(FontFamily: "/Resources/#Segoe Fluent Icons", Glyph: "\ue756"), + IcoPath = Constants.FolderImagePath }; } @@ -437,7 +439,7 @@ namespace Flow.Launcher.Plugin.Explorer }; } - public void LogException(string message, Exception e) + private void LogException(string message, Exception e) { Log.Exception($"|Flow.Launcher.Plugin.Folder.ContextMenu|{message}", e); }