mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Adds option to display open with code for Volume results
This commit is contained in:
parent
d2970a1f35
commit
277b8e94a6
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ namespace Flow.Launcher.Plugin.Explorer
|
|||
if (record.Type == ResultType.File && !string.IsNullOrEmpty(Settings.EditorPath))
|
||||
contextMenus.Add(CreateOpenWithEditorResult(record, Settings.EditorPath));
|
||||
|
||||
if (record.Type == ResultType.Folder && !string.IsNullOrEmpty(Settings.FolderEditorPath))
|
||||
if ((record.Type == ResultType.Folder || record.Type == ResultType.Volume) && !string.IsNullOrEmpty(Settings.FolderEditorPath))
|
||||
contextMenus.Add(CreateOpenWithEditorResult(record, Settings.FolderEditorPath));
|
||||
|
||||
if (record.Type == ResultType.Folder)
|
||||
|
|
|
|||
Loading…
Reference in a new issue