From accf92be2f9225a660724687cc9a06bb82b6fd83 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Fri, 19 Mar 2021 13:32:14 +0100 Subject: [PATCH] fix(Separator): ensure custom color works as expected This was a regression introduced in https://github.com/status-im/status-desktop/pull/2065. The new wrapping Rectangle would get the color that is possibily passed down to Separator. Instead it should get properly bound to the actual separator. --- ui/shared/Separator.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/shared/Separator.qml b/ui/shared/Separator.qml index 9944a1a9e2..5fec2d0685 100644 --- a/ui/shared/Separator.qml +++ b/ui/shared/Separator.qml @@ -1,17 +1,17 @@ import QtQuick 2.13 import "../imports" -Rectangle { +Item { id: root + property color color: Style.current.border width: parent.width height: root.visible ? 1 : 0 anchors.topMargin: Style.current.padding - color: "transparent" Rectangle { id: separator width: parent.width height: 1 - color: Style.current.border + color: root.color anchors.verticalCenter: parent.verticalCenter } }