diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs index 4733e09e9..979b4cd8c 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs @@ -42,11 +42,15 @@ namespace Flow.Launcher.Plugin.Explorer if (record.Type == ResultType.File && !string.IsNullOrEmpty(Settings.EditorPath)) contextMenus.Add(CreateOpenWithEditorResult(record)); - if (record.Type == ResultType.Folder && record.WindowsIndexed) + if (record.Type == ResultType.Folder) { - contextMenus.Add(CreateAddToIndexSearchExclusionListResult(record)); contextMenus.Add(CreateOpenWithShellResult(record)); + if (record.WindowsIndexed) + { + contextMenus.Add(CreateAddToIndexSearchExclusionListResult(record)); + } } + contextMenus.Add(CreateOpenContainingFolderResult(record)); if (record.WindowsIndexed)