Skip to content

Commit 86168db

Browse files
committed
Change EnableHideLnkPath Name to EnableHideAppsPath
1 parent 3d8ed60 commit 86168db

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ public Result Result(string query, IPublicAPI api)
314314
var result = new Result
315315
{
316316
Title = title,
317-
SubTitle = Main._settings.EnableHideLnkPath ? string.Empty : Package.Location,
317+
SubTitle = Main._settings.EnableHideAppsPath ? string.Empty : Package.Location,
318318
Icon = Logo,
319319
Score = matchResult.Score,
320320
TitleHighlightData = matchResult.MatchData,

Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public Result Result(string query, IPublicAPI api)
9797
var result = new Result
9898
{
9999
Title = title,
100-
SubTitle = Main._settings.EnableHideLnkPath ? string.Empty : LnkResolvedPath ?? FullPath,
100+
SubTitle = Main._settings.EnableHideAppsPath ? string.Empty : LnkResolvedPath ?? FullPath,
101101
IcoPath = IcoPath,
102102
Score = matchResult.Score,
103103
TitleHighlightData = matchResult.MatchData,

Plugins/Flow.Launcher.Plugin.Program/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Settings
1414
public bool EnableStartMenuSource { get; set; } = true;
1515

1616
public bool EnableDescription { get; set; } = false;
17-
public bool EnableHideLnkPath { get; set; } = true;
17+
public bool EnableHideAppsPath { get; set; } = true;
1818
public bool EnableRegistrySource { get; set; } = true;
1919
public string CustomizedExplorer { get; set; } = Explorer;
2020
public string CustomizedArgs { get; set; } = ExplorerArgs;

Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ public bool EnableDescription
3232
get => _settings.EnableDescription;
3333
set => _settings.EnableDescription = value;
3434
}
35-
public bool EnableHideLnkPath
35+
public bool EnableHideAppsPath
3636
{
37-
get => _settings.EnableHideLnkPath;
38-
set => _settings.EnableHideLnkPath = value;
37+
get => _settings.EnableHideAppsPath;
38+
set => _settings.EnableHideAppsPath = value;
3939
}
4040

4141
public bool EnableRegistrySource

0 commit comments

Comments
 (0)