change color used for background to match system window default color
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>
Mon, 12 Aug 2024 12:55:48 +0000 (14:55 +0200)
committerMatthieu Gallien <matthieu_gallien@yahoo.fr>
Mon, 12 Aug 2024 14:53:33 +0000 (16:53 +0200)
avoid having many background colors being transparent when they should
never have been

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
theme/Style/Style.qml

index 8fd90e0a0f6ed8f59b010d2bfec4bd11993b1877..181a60999b88f62c5949db114c0f41fcd593c723 100644 (file)
@@ -17,7 +17,7 @@ QtObject {
     readonly property color lightHover: Theme.darkMode ? Qt.lighter(backgroundColor, 2) : Qt.darker(backgroundColor, 1.05)\r
     readonly property color darkerHover: Theme.darkMode ? Qt.lighter(backgroundColor, 2.35) : Qt.darker(backgroundColor, 1.25)\r
     readonly property color menuBorder: Theme.darkMode ? Qt.lighter(backgroundColor, 2.5) : Qt.darker(backgroundColor, 1.5)\r
-    readonly property color backgroundColor: Theme.systemPalette.base\r
+    readonly property color backgroundColor: Theme.systemPalette.window\r
     readonly property color buttonBackgroundColor: Theme.systemPalette.button\r
     readonly property color positiveColor: Qt.rgba(0.38, 0.74, 0.38, 1)\r
 \r