aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-06-02 12:18:37 +0200
committerGitHub <noreply@github.com>2023-06-02 12:18:37 +0200
commit0ece0b5b2796bded331d30988ee42258456703af (patch)
treebce10b3521b6181f0c7628cc557ea88bbb161018
parent954d4d701a136e79c25b58f9680d26a555a6e6fe (diff)
parent3c937532f2c76257f47da04b1d71e48bfc839dc6 (diff)
downloadPrismLauncher-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.cpp2
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();