We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e04284a + 5aeab24 commit 079da72Copy full SHA for 079da72
Flow.Launcher/MainWindow.xaml.cs
@@ -185,7 +185,7 @@ private void InitializeNotifyIcon()
185
var setting = items.Add(InternationalizationManager.Instance.GetTranslation("iconTraySettings"));
186
setting.Click += (o, e) => App.API.OpenSettingDialog();
187
var exit = items.Add(InternationalizationManager.Instance.GetTranslation("iconTrayExit"));
188
- exit.Click += (o, e) => Close();
+ exit.Click += (o, e) => Environment.Exit(0);
189
190
_notifyIcon.ContextMenuStrip = menu;
191
_notifyIcon.MouseClick += (o, e) =>
0 commit comments