File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Plugins/Flow.Launcher.Plugin.Explorer Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
280
280
IcoPath = Constants . DifferentUserIconImagePath
281
281
} ) ;
282
282
283
- if ( record . Type is ResultType . File or ResultType . Folder && Settings . ShowWindowsContextMenu )
283
+ if ( record . Type is ResultType . File or ResultType . Folder && Settings . ShowInlinedWindowsContextMenu )
284
284
{
285
285
var filters = Settings
286
286
. WindowsContextMenuIgnoredItems
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public class Settings
28
28
29
29
public bool UseLocationAsWorkingDir { get ; set ; } = false ;
30
30
31
- public bool ShowWindowsContextMenu { get ; set ; } = true ;
31
+ public bool ShowInlinedWindowsContextMenu { get ; set ; } = false ;
32
32
33
33
public string WindowsContextMenuIgnoredItems { get ; set ; } = string . Empty ;
34
34
Original file line number Diff line number Diff line change @@ -106,10 +106,10 @@ private void InitializeEngineSelection()
106
106
107
107
public bool ShowWindowsContextMenu
108
108
{
109
- get => Settings . ShowWindowsContextMenu ;
109
+ get => Settings . ShowInlinedWindowsContextMenu ;
110
110
set
111
111
{
112
- Settings . ShowWindowsContextMenu = value ;
112
+ Settings . ShowInlinedWindowsContextMenu = value ;
113
113
OnPropertyChanged ( ) ;
114
114
}
115
115
}
You can’t perform that action at this time.
0 commit comments