mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06:00
Load custom theme before initializing main window
Improves debug build startup time with custom themes
This commit is contained in:
@@ -88,6 +88,7 @@ UIThemeManager::UIThemeManager()
|
||||
else {
|
||||
loadColorsFromJSONConfig();
|
||||
applyPalette();
|
||||
applyStyleSheet();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -99,11 +100,6 @@ UIThemeManager *UIThemeManager::instance()
|
||||
|
||||
void UIThemeManager::applyStyleSheet() const
|
||||
{
|
||||
if (!m_useCustomTheme) {
|
||||
qApp->setStyleSheet({});
|
||||
return;
|
||||
}
|
||||
|
||||
QFile qssFile(":uitheme/stylesheet.qss");
|
||||
if (!qssFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||
qApp->setStyleSheet({});
|
||||
|
||||
Reference in New Issue
Block a user