UI: Fix theme showing incorrect theme when on Dark

master
jp9000 2019-05-02 15:47:35 -07:00
parent 0ee9d191bf
commit 6b2f3d0604
1 changed files with 3 additions and 3 deletions

View File

@ -1029,12 +1029,12 @@ void OBSBasicSettings::LoadThemeList()
ui->theme->addItem(name);
}
const char *themeName = App()->GetTheme();
std::string themeName = App()->GetTheme();
if (strcmp(themeName, DEFAULT_THEME) == 0)
if (themeName == DEFAULT_THEME)
themeName = QT_TO_UTF8(defaultTheme);
int idx = ui->theme->findText(themeName);
int idx = ui->theme->findText(themeName.c_str());
if (idx != -1)
ui->theme->setCurrentIndex(idx);
}