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 724160d commit ed0b360Copy full SHA for ed0b360
Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs
@@ -49,7 +49,10 @@ public List<Result> LoadContextMenus(Result selectedResult)
49
}
50
contextMenus.Add(CreateOpenContainingFolderResult(record));
51
52
- contextMenus.Add(CreateOpenWindowsIndexingOptions());
+ if (record.WindowsIndexed)
53
+ {
54
+ contextMenus.Add(CreateOpenWindowsIndexingOptions());
55
+ }
56
57
if (record.ShowIndexState)
58
contextMenus.Add(new Result
0 commit comments