remove underscore variable name

This commit is contained in:
Jeremy 2021-09-01 21:52:32 +10:00
parent 91564e0933
commit 333d3da07f

View file

@ -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