OSDN Git Service

Do not close the application in shutdownComputer(), if hibernation was requested.
[x264-launcher/x264-launcher.git] / src / win_main.cpp
index e2722d5..2495b8b 100644 (file)
@@ -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();
+               }
        }
 
 }