From 333d3da07fc39f1a4e2af3b63b87fe61f5160a7d Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 1 Sep 2021 21:52:32 +1000 Subject: [PATCH] remove underscore variable name --- .../Views/ActionKeywordSetting.xaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ActionKeywordSetting.xaml.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ActionKeywordSetting.xaml.cs index ceb743089..cfb68206a 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/ActionKeywordSetting.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/ActionKeywordSetting.xaml.cs @@ -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