Browse Source

change default theme to dark

pull/130/head
DenioD 4 years ago
parent
commit
c298b8a63c
  1. 4
      src/mainwindow.cpp

4
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");

Loading…
Cancel
Save