Skip to content

Commit

Permalink
Enable fallback icons when enabling dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
kraxarn committed Feb 7, 2021
1 parent 48ccacb commit e7dced5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/settingspage/interfacepage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,12 @@ bool InterfacePage::hasIconTheme()
void InterfacePage::darkThemeToggle(bool checked)
{
if (checked)
{
itfStyle->setCurrentText("Fusion");
itfIcFallback->setChecked(true);
}
else
{
itfStyle->setCurrentIndex(0);
}
}

0 comments on commit e7dced5

Please sign in to comment.