File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Plugins/Flow.Launcher.Plugin.Program Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -620,7 +620,7 @@ public static Win32[] All(Settings settings)
620
620
autoIndexPrograms = autoIndexPrograms . Concat ( startMenu ) ;
621
621
}
622
622
623
- if ( settings . EnablePATHSource )
623
+ if ( settings . EnablePathSource )
624
624
{
625
625
var path = PATHPrograms ( settings . GetSuffixes ( ) , protocols , commonParents ) ;
626
626
programs = programs . Concat ( path ) ;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ private void RemoveRedundantSuffixes()
118
118
public bool EnableDescription { get ; set ; } = false ;
119
119
public bool HideAppsPath { get ; set ; } = true ;
120
120
public bool EnableRegistrySource { get ; set ; } = true ;
121
- public bool EnablePATHSource { get ; set ; } = true ;
121
+ public bool EnablePathSource { get ; set ; } = false ;
122
122
123
123
public string CustomizedExplorer { get ; set ; } = Explorer ;
124
124
public string CustomizedArgs { get ; set ; } = ExplorerArgs ;
Original file line number Diff line number Diff line change @@ -69,10 +69,10 @@ public bool EnableStartMenuSource
69
69
70
70
public bool EnablePATHSource
71
71
{
72
- get => _settings . EnablePATHSource ;
72
+ get => _settings . EnablePathSource ;
73
73
set
74
74
{
75
- _settings . EnablePATHSource = value ;
75
+ _settings . EnablePathSource = value ;
76
76
ReIndexing ( ) ;
77
77
}
78
78
}
Original file line number Diff line number Diff line change 4
4
"Name" : " Program" ,
5
5
"Description" : " Search programs in Flow.Launcher" ,
6
6
"Author" : " qianlifeng" ,
7
- "Version" : " 2.0.0 " ,
7
+ "Version" : " 2.0.1 " ,
8
8
"Language" : " csharp" ,
9
9
"Website" : " https://github.com/Flow-Launcher/Flow.Launcher" ,
10
10
"ExecuteFileName" : " Flow.Launcher.Plugin.Program.dll" ,
You can’t perform that action at this time.
0 commit comments