Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
}
Expand Down Expand Up @@ -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
};
}

Expand Down Expand Up @@ -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);
}
Expand Down