File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Plugins/Flow.Launcher.Plugin.Explorer Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,15 @@ public List<Result> LoadContextMenus(Result selectedResult)
42
42
if ( record . Type == ResultType . File && ! string . IsNullOrEmpty ( Settings . EditorPath ) )
43
43
contextMenus . Add ( CreateOpenWithEditorResult ( record ) ) ;
44
44
45
- if ( record . Type == ResultType . Folder && record . WindowsIndexed )
45
+ if ( record . Type == ResultType . Folder )
46
46
{
47
- contextMenus . Add ( CreateAddToIndexSearchExclusionListResult ( record ) ) ;
48
47
contextMenus . Add ( CreateOpenWithShellResult ( record ) ) ;
48
+ if ( record . WindowsIndexed )
49
+ {
50
+ contextMenus . Add ( CreateAddToIndexSearchExclusionListResult ( record ) ) ;
51
+ }
49
52
}
53
+
50
54
contextMenus . Add ( CreateOpenContainingFolderResult ( record ) ) ;
51
55
52
56
if ( record . WindowsIndexed )
You can’t perform that action at this time.
0 commit comments