From 8de3407ffb158aa241b958d15efd99720d320910 Mon Sep 17 00:00:00 2001 From: morg Date: Fri, 19 Nov 2021 20:35:45 +0100 Subject: [PATCH] Make sure to exit the app if we have to. --- qt/OpenRGBDialog2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/qt/OpenRGBDialog2.cpp b/qt/OpenRGBDialog2.cpp index 99872cd8a..063524c35 100644 --- a/qt/OpenRGBDialog2.cpp +++ b/qt/OpenRGBDialog2.cpp @@ -559,6 +559,7 @@ void OpenRGBDialog2::closeEvent(QCloseEvent *event) { plugin_manager->UnloadPlugins(); event->accept(); + QApplication::exit(0); } }