From 6529efda4d50726b9de07d1b58498270d1c399c0 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Wed, 14 Apr 2021 17:32:35 +0200 Subject: [PATCH] uiux: fix sticker message border color --- .../Chat/ChatColumn/MessageComponents/CompactMessage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml index 425b7b05aa..a5af8dff80 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml @@ -151,7 +151,7 @@ Item { Rectangle { id: stickerContainer color: Style.current.transparent - border.color: root.isHovered ? Qt.darker(Style.current.darkGrey, 1.1) : Style.current.grey + border.color: root.isHovered ? Qt.darker(Style.current.border, 1.1) : Style.current.border border.width: 1 radius: 16 width: stickerId.width + 2 * root.chatVerticalPadding