Skip to content

Commit 94a5c5d

Browse files
committed
Change function name to suppress warning
1 parent b36562a commit 94a5c5d

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Flow.Launcher/ActionKeywords.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private void ReplaceActionKeyword(string id, IReadOnlyList<string> removedAction
8080
}
8181

8282
// Update action keywords text and close window
83-
_pluginViewModel.OnActionKeywordsChanged();
83+
_pluginViewModel.OnActionKeywordsTextChanged();
8484
Close();
8585
}
8686
}

Flow.Launcher/ViewModel/PluginViewModel.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -155,16 +155,11 @@ public Control SettingControl
155155
public bool SearchDelayEnabled => Settings.SearchQueryResultsWithDelay;
156156
public string DefaultSearchDelay => Settings.SearchDelayTime.ToString();
157157

158-
public void OnActionKeywordsChanged()
158+
public void OnActionKeywordsTextChanged()
159159
{
160160
OnPropertyChanged(nameof(ActionKeywordsText));
161161
}
162162

163-
public void OnSearchDelayTimeChanged()
164-
{
165-
OnPropertyChanged(nameof(SearchDelayTimeText));
166-
}
167-
168163
[RelayCommand]
169164
private void OpenPluginDirectory()
170165
{

0 commit comments

Comments
 (0)