aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/quickcontrols2/fusion/qquickfusiontheme.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/quickcontrols2/fusion/qquickfusiontheme.cpp b/src/quickcontrols2/fusion/qquickfusiontheme.cpp
index 903758bb..29d2ed1a 100644
--- a/src/quickcontrols2/fusion/qquickfusiontheme.cpp
+++ b/src/quickcontrols2/fusion/qquickfusiontheme.cpp
@@ -47,6 +47,8 @@ void QQuickFusionTheme::initialize(QQuickTheme *theme)
QPalette systemPalette;
systemPalette.setColor(QPalette::Active, QPalette::ButtonText,
isDarkSystemTheme ? QColor::fromRgb(0xe7e7e7) : QColor::fromRgb(0x252525));
+ systemPalette.setColor(QPalette::Inactive, QPalette::ButtonText,
+ isDarkSystemTheme ? QColor::fromRgb(0xe7e7e7) : QColor::fromRgb(0x252525));
systemPalette.setColor(QPalette::Disabled, QPalette::ButtonText,
isDarkSystemTheme ? QColor::fromRgb(0x777777) : QColor::fromRgb(0xb6b6b6));
theme->setPalette(QQuickTheme::System, systemPalette);