We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91564e0 commit 333d3daCopy full SHA for 333d3da
Plugins/Flow.Launcher.Plugin.Explorer/Views/ActionKeywordSetting.xaml.cs
@@ -19,18 +19,18 @@ public partial class ActionKeywordSetting : Window
19
20
public string ActionKeyword
21
{
22
- get => _actionKeyword;
+ get => actionKeyword;
23
set
24
25
// Set Enable to be true if user change ActionKeyword
26
Enabled = true;
27
- _actionKeyword = value;
+ actionKeyword = value;
28
}
29
30
31
public bool Enabled { get; set; }
32
33
- private string _actionKeyword;
+ private string actionKeyword;
34
35
public Visibility EnabledVisibility
36
=> CurrentActionKeyword.KeywordProperty == Settings.ActionKeyword.FileContentSearchActionKeyword
0 commit comments