From 4998fcd72ddd8385559bca9b465ba638a49e96e8 Mon Sep 17 00:00:00 2001 From: Matt <97983689+bluepilledgreat@users.noreply.github.com> Date: Thu, 24 Oct 2024 20:23:58 +0100 Subject: [PATCH] fix bloxstrap never closing if another menu is open (#3453) --- Bloxstrap/LaunchHandler.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bloxstrap/LaunchHandler.cs b/Bloxstrap/LaunchHandler.cs index 35739fd..cfd1a29 100644 --- a/Bloxstrap/LaunchHandler.cs +++ b/Bloxstrap/LaunchHandler.cs @@ -157,6 +157,8 @@ namespace Bloxstrap if (process is not null) PInvoke.SetForegroundWindow((HWND)process.MainWindowHandle); + + App.Terminate(); } }