From 1b06a651f0e6d493caa8a27b4d0d4d4f26fa122f Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Mon, 24 Feb 2025 19:37:29 +0100 Subject: [PATCH] fix: Chat item code style --- ChatView/qml/ChatItem.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChatView/qml/ChatItem.qml b/ChatView/qml/ChatItem.qml index 271fb85..124800a 100644 --- a/ChatView/qml/ChatItem.qml +++ b/ChatView/qml/ChatItem.qml @@ -122,9 +122,9 @@ Rectangle { anchors.verticalCenter: parent.verticalCenter width: 3 - height: parent.height - 8 + height: root.height - root.radius color: "#92BD6C" - radius: 8 + radius: root.radius visible: root.isUserMessage }