UI: Reintroduce faster theme switching

Based on (was reverted):
08cee21158

This simplifies the faster switching code, as setting an empty
stylesheet resets it to default.
master
cg2121 2022-08-17 18:56:50 -05:00 committed by Jim
parent 5412b000ab
commit ccfe300f72
1 changed files with 2 additions and 0 deletions

View File

@ -1205,6 +1205,8 @@ bool OBSApp::SetTheme(std::string name, std::string path)
path = GetTheme(name, path);
if (path.empty())
return false;
setStyleSheet("");
unique_ptr<OBSThemeMeta> themeMeta;
themeMeta.reset(ParseThemeMeta(path.c_str()));
string parentPath;