We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2970a1 commit 277b8e9Copy full SHA for 277b8e9
Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs
@@ -42,7 +42,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
42
if (record.Type == ResultType.File && !string.IsNullOrEmpty(Settings.EditorPath))
43
contextMenus.Add(CreateOpenWithEditorResult(record, Settings.EditorPath));
44
45
- if (record.Type == ResultType.Folder && !string.IsNullOrEmpty(Settings.FolderEditorPath))
+ if ((record.Type == ResultType.Folder || record.Type == ResultType.Volume) && !string.IsNullOrEmpty(Settings.FolderEditorPath))
46
contextMenus.Add(CreateOpenWithEditorResult(record, Settings.FolderEditorPath));
47
48
if (record.Type == ResultType.Folder)
0 commit comments