From c72fdf1ca97d1afe9b994ce666a1e1161cf5cd9b Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Mon, 15 May 2023 08:41:41 +0100 Subject: [PATCH] Fix stuck notification area icon issue oh so it was that simple huh lmao --- Bloxstrap/App.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index 98a37e2..0d25ce7 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -68,6 +68,7 @@ namespace Bloxstrap Logger.WriteLine($"[App::Terminate] Terminating with exit code {code}"); Settings.Save(); State.Save(); + Notification.Dispose(); Environment.Exit(code); }