From c298b8a63cf62511569475dc8dcb21c841305abe Mon Sep 17 00:00:00 2001 From: DenioD <41270280+DenioD@users.noreply.github.com> Date: Thu, 28 May 2020 21:08:52 +0200 Subject: [PATCH] change default theme to dark --- src/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 7db28cf..27c567e 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -59,7 +59,7 @@ MainWindow::MainWindow(QWidget *parent) : } catch (...) { - theme_name = "default"; + theme_name = "dark"; } this->slot_change_theme(theme_name); @@ -1823,7 +1823,7 @@ void MainWindow::slot_change_theme(const QString& theme_name) } catch (...) { - saved_theme_name = "default"; + saved_theme_name = "dark"; } QFile qFile(":/css/res/css/" + saved_theme_name +".css");