mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change function name to suppress warning
This commit is contained in:
parent
b36562af6d
commit
94a5c5dcb7
2 changed files with 2 additions and 7 deletions
|
|
@ -80,7 +80,7 @@ namespace Flow.Launcher
|
|||
}
|
||||
|
||||
// Update action keywords text and close window
|
||||
_pluginViewModel.OnActionKeywordsChanged();
|
||||
_pluginViewModel.OnActionKeywordsTextChanged();
|
||||
Close();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue