Merge pull request #1759 from VictoriousRaptor/AddGlyphForOpenWithEditor

Add glyph for open with editor/shell
This commit is contained in:
VictoriousRaptor 2023-01-03 15:11:53 +08:00 committed by GitHub
commit ac190bd6b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -339,6 +339,7 @@ namespace Flow.Launcher.Plugin.Explorer
return false; return false;
} }
}, },
Glyph = new GlyphInfo(FontFamily: "/Resources/#Segoe Fluent Icons", Glyph: "\ue70f"),
IcoPath = Constants.FileImagePath IcoPath = Constants.FileImagePath
}; };
} }
@ -371,7 +372,8 @@ namespace Flow.Launcher.Plugin.Explorer
return false; 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); Log.Exception($"|Flow.Launcher.Plugin.Folder.ContextMenu|{message}", e);
} }