diff --git a/Flow.Launcher/ActionKeywords.xaml.cs b/Flow.Launcher/ActionKeywords.xaml.cs index ad24f2a76..9420b4c38 100644 --- a/Flow.Launcher/ActionKeywords.xaml.cs +++ b/Flow.Launcher/ActionKeywords.xaml.cs @@ -80,7 +80,7 @@ namespace Flow.Launcher } // Update action keywords text and close window - _pluginViewModel.OnActionKeywordsChanged(); + _pluginViewModel.OnActionKeywordsTextChanged(); Close(); } } diff --git a/Flow.Launcher/ViewModel/PluginViewModel.cs b/Flow.Launcher/ViewModel/PluginViewModel.cs index 8312806fb..64a7f3db8 100644 --- a/Flow.Launcher/ViewModel/PluginViewModel.cs +++ b/Flow.Launcher/ViewModel/PluginViewModel.cs @@ -155,16 +155,11 @@ namespace Flow.Launcher.ViewModel public bool SearchDelayEnabled => Settings.SearchQueryResultsWithDelay; public string DefaultSearchDelay => Settings.SearchDelayTime.ToString(); - public void OnActionKeywordsChanged() + public void OnActionKeywordsTextChanged() { OnPropertyChanged(nameof(ActionKeywordsText)); } - public void OnSearchDelayTimeChanged() - { - OnPropertyChanged(nameof(SearchDelayTimeText)); - } - [RelayCommand] private void OpenPluginDirectory() {