mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
remove underscore variable name
This commit is contained in:
parent
91564e0933
commit
333d3da07f
1 changed files with 3 additions and 3 deletions
|
|
@ -19,18 +19,18 @@ namespace Flow.Launcher.Plugin.Explorer.Views
|
|||
|
||||
public string ActionKeyword
|
||||
{
|
||||
get => _actionKeyword;
|
||||
get => actionKeyword;
|
||||
set
|
||||
{
|
||||
// Set Enable to be true if user change ActionKeyword
|
||||
Enabled = true;
|
||||
_actionKeyword = value;
|
||||
actionKeyword = value;
|
||||
}
|
||||
}
|
||||
|
||||
public bool Enabled { get; set; }
|
||||
|
||||
private string _actionKeyword;
|
||||
private string actionKeyword;
|
||||
|
||||
public Visibility EnabledVisibility
|
||||
=> CurrentActionKeyword.KeywordProperty == Settings.ActionKeyword.FileContentSearchActionKeyword
|
||||
|
|
|
|||
Loading…
Reference in a new issue