Skip to content

Commit 62a245f

Browse files
committed
remove success message boxes
1 parent 827a953 commit 62a245f

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Flow.Launcher/CustomQueryHotkeySetting.xaml.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ private void btnAdd_OnClick(object sender, RoutedEventArgs e)
5757
App.API.ChangeQuery(pluginHotkey.ActionKeyword);
5858
Application.Current.MainWindow.Visibility = Visibility.Visible;
5959
});
60-
MessageBox.Show(InternationalizationManager.Instance.GetTranslation("success"));
6160
}
6261
else
6362
{
@@ -76,7 +75,6 @@ private void btnAdd_OnClick(object sender, RoutedEventArgs e)
7675
App.API.ChangeQuery(updateCustomHotkey.ActionKeyword);
7776
Application.Current.MainWindow.Visibility = Visibility.Visible;
7877
});
79-
MessageBox.Show(InternationalizationManager.Instance.GetTranslation("success"));
8078
}
8179

8280
Close();

Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ private void AddSearchSource()
8383

8484
_searchSources.Add(_searchSource);
8585

86-
var info = _api.GetTranslation("success");
87-
MessageBox.Show(info);
8886
Close();
8987
}
9088
else
@@ -106,8 +104,6 @@ private void EditSearchSource()
106104
var index = _searchSources.IndexOf(_oldSearchSource);
107105
_searchSources[index] = _searchSource;
108106

109-
var info = _api.GetTranslation("success");
110-
MessageBox.Show(info);
111107
Close();
112108
}
113109
else

0 commit comments

Comments
 (0)