Change EnableHideLnkPath Name to EnableHideAppsPath

This commit is contained in:
DB p 2021-11-30 02:37:27 +09:00
parent 3d8ed6038e
commit 86168dbfeb
4 changed files with 6 additions and 6 deletions

View file

@ -314,7 +314,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
var result = new Result
{
Title = title,
SubTitle = Main._settings.EnableHideLnkPath ? string.Empty : Package.Location,
SubTitle = Main._settings.EnableHideAppsPath ? string.Empty : Package.Location,
Icon = Logo,
Score = matchResult.Score,
TitleHighlightData = matchResult.MatchData,

View file

@ -97,7 +97,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
var result = new Result
{
Title = title,
SubTitle = Main._settings.EnableHideLnkPath ? string.Empty : LnkResolvedPath ?? FullPath,
SubTitle = Main._settings.EnableHideAppsPath ? string.Empty : LnkResolvedPath ?? FullPath,
IcoPath = IcoPath,
Score = matchResult.Score,
TitleHighlightData = matchResult.MatchData,

View file

@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.Program
public bool EnableStartMenuSource { get; set; } = true;
public bool EnableDescription { get; set; } = false;
public bool EnableHideLnkPath { get; set; } = true;
public bool EnableHideAppsPath { get; set; } = true;
public bool EnableRegistrySource { get; set; } = true;
public string CustomizedExplorer { get; set; } = Explorer;
public string CustomizedArgs { get; set; } = ExplorerArgs;

View file

@ -32,10 +32,10 @@ namespace Flow.Launcher.Plugin.Program.Views
get => _settings.EnableDescription;
set => _settings.EnableDescription = value;
}
public bool EnableHideLnkPath
public bool EnableHideAppsPath
{
get => _settings.EnableHideLnkPath;
set => _settings.EnableHideLnkPath = value;
get => _settings.EnableHideAppsPath;
set => _settings.EnableHideAppsPath = value;
}
public bool EnableRegistrySource