From 01f7449508e13d8e5a926fb6ea97a5bf6566e45b Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 27 May 2020 13:10:50 -0400 Subject: [PATCH] fix black border on the splitview --- ui/app/AppLayouts/Chat/ChatLayout.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ui/app/AppLayouts/Chat/ChatLayout.qml b/ui/app/AppLayouts/Chat/ChatLayout.qml index 97dcdc1a90..88df7d211d 100644 --- a/ui/app/AppLayouts/Chat/ChatLayout.qml +++ b/ui/app/AppLayouts/Chat/ChatLayout.qml @@ -18,6 +18,12 @@ SplitView { anchors.left: parent.left anchors.leftMargin: 0 + handleDelegate: Rectangle { + implicitWidth: 1 + implicitHeight: 4 + color: Theme.grey + } + ContactsColumn { id: contactsColumn }