Skip to content

Commit 333d3da

Browse files
committed
remove underscore variable name
1 parent 91564e0 commit 333d3da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Views/ActionKeywordSetting.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ public partial class ActionKeywordSetting : Window
1919

2020
public string ActionKeyword
2121
{
22-
get => _actionKeyword;
22+
get => actionKeyword;
2323
set
2424
{
2525
// Set Enable to be true if user change ActionKeyword
2626
Enabled = true;
27-
_actionKeyword = value;
27+
actionKeyword = value;
2828
}
2929
}
3030

3131
public bool Enabled { get; set; }
3232

33-
private string _actionKeyword;
33+
private string actionKeyword;
3434

3535
public Visibility EnabledVisibility
3636
=> CurrentActionKeyword.KeywordProperty == Settings.ActionKeyword.FileContentSearchActionKeyword

0 commit comments

Comments
 (0)