UI: Add backwards compatible theme fallback

Closes jp9000/obs-studio#936
This commit is contained in:
VodBox
2017-07-02 11:54:08 -07:00
committed by jp9000
parent 7acd3be40d
commit d1cb3a42f5
+4 -4
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)