mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
remove success message boxes
This commit is contained in:
parent
827a953722
commit
62a245f049
2 changed files with 0 additions and 6 deletions
|
|
@ -57,7 +57,6 @@ namespace Flow.Launcher
|
|||
App.API.ChangeQuery(pluginHotkey.ActionKeyword);
|
||||
Application.Current.MainWindow.Visibility = Visibility.Visible;
|
||||
});
|
||||
MessageBox.Show(InternationalizationManager.Instance.GetTranslation("success"));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -76,7 +75,6 @@ namespace Flow.Launcher
|
|||
App.API.ChangeQuery(updateCustomHotkey.ActionKeyword);
|
||||
Application.Current.MainWindow.Visibility = Visibility.Visible;
|
||||
});
|
||||
MessageBox.Show(InternationalizationManager.Instance.GetTranslation("success"));
|
||||
}
|
||||
|
||||
Close();
|
||||
|
|
|
|||
|
|
@ -83,8 +83,6 @@ namespace Flow.Launcher.Plugin.WebSearch
|
|||
|
||||
_searchSources.Add(_searchSource);
|
||||
|
||||
var info = _api.GetTranslation("success");
|
||||
MessageBox.Show(info);
|
||||
Close();
|
||||
}
|
||||
else
|
||||
|
|
@ -106,8 +104,6 @@ namespace Flow.Launcher.Plugin.WebSearch
|
|||
var index = _searchSources.IndexOf(_oldSearchSource);
|
||||
_searchSources[index] = _searchSource;
|
||||
|
||||
var info = _api.GetTranslation("success");
|
||||
MessageBox.Show(info);
|
||||
Close();
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue