UI: Add backwards compatible theme fallback

Closes jp9000/obs-studio#936
This commit is contained in:
VodBox 2017-06-27 18:16:08 +12:00 committed by jp9000
parent 7acd3be40d
commit d1cb3a42f5

View file

@ -738,13 +738,13 @@ bool OBSApp::InitTheme()
{
const char *themeName = config_get_string(globalConfig, "General",
"Theme");
if (!themeName)
themeName = "Default";
stringstream t;
t << themeName;
return SetTheme(t.str());
if (strcmp(themeName, "Default") != 0 && SetTheme(themeName))
return true;
return SetTheme("Default");
}
OBSApp::OBSApp(int &argc, char **argv, profiler_name_store_t *store)