Skip to content

Commit

Permalink
Update mainwindow.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
ea4k authored Mar 8, 2024
1 parent aec6cf1 commit 1704b06
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6913,11 +6913,11 @@ bool MainWindow::loadSettings()

//qDebug() << Q_FUNC_INFO << " - 60 - colors";
settings.beginGroup ("Colors");
newOneColor.fromString(settings.value ("NewOneColor", "#FF0000").toString ());
neededColor.fromString(settings.value ("NeededColor","#FF8C00").toString ());
workedColor.fromString(settings.value ("WorkedColor", "#FFD700").toString ());
confirmedColor.fromString(settings.value ("ConfirmedColor", "#32CD32").toString ());
defaultColor.fromString(settings.value ("DefaultColor", "#00BFFF").toString ());
newOneColor.setNamedColor(settings.value ("NewOneColor", "#FF0000").toString ());
neededColor.setNamedColor(settings.value ("NeededColor","#FF8C00").toString ());
workedColor.setNamedColor(settings.value ("WorkedColor", "#FFD700").toString ());
confirmedColor.setNamedColor(settings.value ("ConfirmedColor", "#32CD32").toString ());
defaultColor.setNamedColor(settings.value ("DefaultColor", "#00BFFF").toString ());
settings.endGroup ();
setupDialog->loadDarkMode ();

Expand Down

0 comments on commit 1704b06

Please sign in to comment.