From ec18a0c507d5645cfbbdc4eef285a2db80bc1252 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 28 Oct 2024 19:42:39 -0500 Subject: [PATCH] Switch Fusion dark theme --- src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.cpp b/src/main.cpp index 9f6fd8a..780b474 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -14,6 +14,7 @@ int main(int argc, char *argv[]) { QSettings::setDefaultFormat(QSettings::Format::IniFormat); QApplication a(argc, argv); + a.setStyle("fusion"); QApplication::setApplicationName(QObject::tr("Slide Controller 9000")); MainWindow w; w.show();