From 631d5e3774a8a215b4e3919636538abd4d67771c Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 1 Jun 2021 00:28:31 +0100 Subject: [PATCH] Changed: shutdown behaviour to terminate app --- MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MainForm.cs b/MainForm.cs index 4349ce5..6664fff 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -139,7 +139,8 @@ namespace AppLauncher break; case WM_QUERYENDSESSION: requestExit = true; - this.Close(); + //this.Close(); + Application.Exit(); break; default: break;