Browse Source

UI: Fix theme showing incorrect theme when on Dark

jp9000 6 years ago
parent
commit
6b2f3d0604
1 changed files with 3 additions and 3 deletions
  1. 3 3
      UI/window-basic-settings.cpp

+ 3 - 3
UI/window-basic-settings.cpp

@@ -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);
 }