diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-02 12:18:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 12:18:37 +0200 |
commit | 0ece0b5b2796bded331d30988ee42258456703af (patch) | |
tree | bce10b3521b6181f0c7628cc557ea88bbb161018 | |
parent | 954d4d701a136e79c25b58f9680d26a555a6e6fe (diff) | |
parent | 3c937532f2c76257f47da04b1d71e48bfc839dc6 (diff) | |
download | PrismLauncher-0ece0b5b2796bded331d30988ee42258456703af.tar.gz PrismLauncher-0ece0b5b2796bded331d30988ee42258456703af.tar.bz2 PrismLauncher-0ece0b5b2796bded331d30988ee42258456703af.zip |
Merge pull request #1086 from TayouVR/fix-qt6_5-brown-system-theme
-rw-r--r-- | launcher/ui/themes/SystemTheme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/themes/SystemTheme.cpp b/launcher/ui/themes/SystemTheme.cpp index a95bc875..3a746d02 100644 --- a/launcher/ui/themes/SystemTheme.cpp +++ b/launcher/ui/themes/SystemTheme.cpp @@ -43,7 +43,7 @@ SystemTheme::SystemTheme() { themeDebugLog() << "Determining System Theme..."; const auto& style = QApplication::style(); - systemPalette = style->standardPalette(); + systemPalette = QApplication::palette(); QString lowerThemeName = style->objectName(); themeDebugLog() << "System theme seems to be:" << lowerThemeName; QStringList styles = QStyleFactory::keys(); |