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
582fe6c193
5 changed files with 7 additions and 7 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
Width="200"
|
||||
Margin="70,8,10,8"
|
||||
Content="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath}"
|
||||
IsChecked="{Binding EnableHideLnkPath}"
|
||||
IsChecked="{Binding EnableHideAppsPath}"
|
||||
ToolTip="{DynamicResource flowlauncher_plugin_program_enable_hidelnkpath_tooltip}" />
|
||||
<CheckBox
|
||||
Name="DescriptionEnabled"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue