mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-03-10 12:21:12 +00:00
commit
8ff4374325
@ -615,7 +615,6 @@ int Application::exec(const QStringList ¶ms)
|
||||
#else
|
||||
UIThemeManager::initInstance();
|
||||
m_window = new MainWindow;
|
||||
UIThemeManager::instance()->applyStyleSheet();
|
||||
#endif // DISABLE_GUI
|
||||
|
||||
m_running = true;
|
||||
|
@ -49,7 +49,7 @@ StatusBar::StatusBar(QWidget *parent)
|
||||
#ifndef Q_OS_MACOS
|
||||
// Redefining global stylesheet breaks certain elements on mac like tabs.
|
||||
// Qt checks whether the stylesheet class inherts("QMacStyle") and this becomes false.
|
||||
qApp->setStyleSheet("QStatusBar::item { border-width: 0; }");
|
||||
setStyleSheet("QStatusBar::item { border-width: 0; }");
|
||||
#endif
|
||||
|
||||
BitTorrent::Session *const session = BitTorrent::Session::instance();
|
||||
|
@ -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({});
|
||||
|
@ -45,8 +45,6 @@ public:
|
||||
static void freeInstance();
|
||||
static UIThemeManager *instance();
|
||||
|
||||
void applyStyleSheet() const;
|
||||
|
||||
QString getIconPath(const QString &iconId) const;
|
||||
QIcon getIcon(const QString &iconId, const QString &fallback = {}) const;
|
||||
QIcon getFlagIcon(const QString &countryIsoCode) const;
|
||||
@ -58,6 +56,7 @@ private:
|
||||
QString getIconPathFromResources(const QString &iconId, const QString &fallback = {}) const;
|
||||
void loadColorsFromJSONConfig();
|
||||
void applyPalette() const;
|
||||
void applyStyleSheet() const;
|
||||
|
||||
static UIThemeManager *m_instance;
|
||||
QHash<QString, QColor> m_colors;
|
||||
|
Loading…
x
Reference in New Issue
Block a user