From 7fe6779177716755fd4ff282dc2f58024882bb0b Mon Sep 17 00:00:00 2001 From: lordmulder Date: Sat, 29 May 2021 19:24:32 +0200 Subject: [PATCH] Do not close the application in shutdownComputer(), if hibernation was requested. --- src/win_main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/win_main.cpp b/src/win_main.cpp index e2722d5..2495b8b 100644 --- a/src/win_main.cpp +++ b/src/win_main.cpp @@ -870,7 +870,10 @@ void MainWindow::shutdownComputer(void) if(MUtils::OS::shutdown_computer("Simple x264 Launcher: All jobs completed, shutting down!", 10, true, hibernate)) { - qApp->closeAllWindows(); + if (!hibernate) + { + qApp->closeAllWindows(); + } } } -- 2.11.0