From 60e68b859b20a707e04bc35db8c1925e0fc88075 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Mon, 12 Aug 2024 14:55:48 +0200 Subject: [PATCH] change color used for background to match system window default color avoid having many background colors being transparent when they should never have been Signed-off-by: Matthieu Gallien --- theme/Style/Style.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml index 8fd90e0a0f..181a60999b 100644 --- a/theme/Style/Style.qml +++ b/theme/Style/Style.qml @@ -17,7 +17,7 @@ QtObject { readonly property color lightHover: Theme.darkMode ? Qt.lighter(backgroundColor, 2) : Qt.darker(backgroundColor, 1.05) readonly property color darkerHover: Theme.darkMode ? Qt.lighter(backgroundColor, 2.35) : Qt.darker(backgroundColor, 1.25) readonly property color menuBorder: Theme.darkMode ? Qt.lighter(backgroundColor, 2.5) : Qt.darker(backgroundColor, 1.5) - readonly property color backgroundColor: Theme.systemPalette.base + readonly property color backgroundColor: Theme.systemPalette.window readonly property color buttonBackgroundColor: Theme.systemPalette.button readonly property color positiveColor: Qt.rgba(0.38, 0.74, 0.38, 1)