mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change EnableHideLnkPath Name to EnableHideAppsPath
This commit is contained in:
parent
3d8ed6038e
commit
86168dbfeb
4 changed files with 6 additions and 6 deletions
|
|
@ -314,7 +314,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
||||||
var result = new Result
|
var result = new Result
|
||||||
{
|
{
|
||||||
Title = title,
|
Title = title,
|
||||||
SubTitle = Main._settings.EnableHideLnkPath ? string.Empty : Package.Location,
|
SubTitle = Main._settings.EnableHideAppsPath ? string.Empty : Package.Location,
|
||||||
Icon = Logo,
|
Icon = Logo,
|
||||||
Score = matchResult.Score,
|
Score = matchResult.Score,
|
||||||
TitleHighlightData = matchResult.MatchData,
|
TitleHighlightData = matchResult.MatchData,
|
||||||
|
|
|
||||||
|
|
@ -97,7 +97,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
|
||||||
var result = new Result
|
var result = new Result
|
||||||
{
|
{
|
||||||
Title = title,
|
Title = title,
|
||||||
SubTitle = Main._settings.EnableHideLnkPath ? string.Empty : LnkResolvedPath ?? FullPath,
|
SubTitle = Main._settings.EnableHideAppsPath ? string.Empty : LnkResolvedPath ?? FullPath,
|
||||||
IcoPath = IcoPath,
|
IcoPath = IcoPath,
|
||||||
Score = matchResult.Score,
|
Score = matchResult.Score,
|
||||||
TitleHighlightData = matchResult.MatchData,
|
TitleHighlightData = matchResult.MatchData,
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.Program
|
||||||
public bool EnableStartMenuSource { get; set; } = true;
|
public bool EnableStartMenuSource { get; set; } = true;
|
||||||
|
|
||||||
public bool EnableDescription { get; set; } = false;
|
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 bool EnableRegistrySource { get; set; } = true;
|
||||||
public string CustomizedExplorer { get; set; } = Explorer;
|
public string CustomizedExplorer { get; set; } = Explorer;
|
||||||
public string CustomizedArgs { get; set; } = ExplorerArgs;
|
public string CustomizedArgs { get; set; } = ExplorerArgs;
|
||||||
|
|
|
||||||
|
|
@ -32,10 +32,10 @@ namespace Flow.Launcher.Plugin.Program.Views
|
||||||
get => _settings.EnableDescription;
|
get => _settings.EnableDescription;
|
||||||
set => _settings.EnableDescription = value;
|
set => _settings.EnableDescription = value;
|
||||||
}
|
}
|
||||||
public bool EnableHideLnkPath
|
public bool EnableHideAppsPath
|
||||||
{
|
{
|
||||||
get => _settings.EnableHideLnkPath;
|
get => _settings.EnableHideAppsPath;
|
||||||
set => _settings.EnableHideLnkPath = value;
|
set => _settings.EnableHideAppsPath = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool EnableRegistrySource
|
public bool EnableRegistrySource
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue