From c9d1d737aa7063e29760d6197279308215e502c0 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Wed, 12 May 2021 21:58:28 +0200 Subject: [PATCH] Use alternateBackgroundColor for OpenDrawerButton With a dark the current one dark whereas the controls below are all bright --- .../qml/private/OpenDrawerButton.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/mobilehomescreencomponents/qml/private/OpenDrawerButton.qml b/components/mobilehomescreencomponents/qml/private/OpenDrawerButton.qml index b74986eb..f86c9b06 100644 --- a/components/mobilehomescreencomponents/qml/private/OpenDrawerButton.qml +++ b/components/mobilehomescreencomponents/qml/private/OpenDrawerButton.qml @@ -51,7 +51,7 @@ MouseArea { left: parent.left verticalCenterOffset: -arrowUpIcon.height/4 + (arrowUpIcon.height/4) * arrowUpIcon.factor } - color: theme.backgroundColor + color: theme.alternateBackgroundColor transformOrigin: Item.Right rotation: -45 + 90 * arrowUpIcon.factor antialiasing: true @@ -64,7 +64,7 @@ MouseArea { right: parent.right verticalCenterOffset: -arrowUpIcon.height/4 + (arrowUpIcon.height/4) * arrowUpIcon.factor } - color: theme.backgroundColor + color: theme.alternateBackgroundColor transformOrigin: Item.Left rotation: 45 - 90 * arrowUpIcon.factor antialiasing: true