Merge branch 'feature/force-close-on-shutdown' into 'master'

Changed: shutdown behaviour to terminate app

See merge request SympatheticFire/linear-app-launcher!11
This commit is contained in:
Ray 2021-06-01 09:07:23 +00:00
commit 037e73246d

View File

@ -139,7 +139,8 @@ namespace AppLauncher
break;
case WM_QUERYENDSESSION:
requestExit = true;
this.Close();
//this.Close();
Application.Exit();
break;
default: break;