diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index 90b8d71bd..343e4a2d9 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -1222,7 +1222,6 @@ bool OBSApp::SetTheme(std::string name, std::string path) QString mpath = QString("file:///") + lpath.c_str(); ParseExtraThemeData(path.c_str()); - setStyle(new OBSIgnoreWheelProxyStyle); setStyleSheet(mpath); if (themeMeta) { themeDarkMode = themeMeta->dark; @@ -1238,6 +1237,7 @@ bool OBSApp::SetTheme(std::string name, std::string path) bool OBSApp::InitTheme() { defaultPalette = palette(); + setStyle(new OBSIgnoreWheelProxyStyle()); const char *themeName = config_get_string(globalConfig, "General", "CurrentTheme3");