From eae2b748d5fabcf5b2d8343c254e7574cd9c5488 Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Fri, 31 Oct 2025 09:05:17 +0100 Subject: [PATCH] fix: Chat items width --- ChatView/qml/RootItem.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ChatView/qml/RootItem.qml b/ChatView/qml/RootItem.qml index 7f5990f..d1198a2 100644 --- a/ChatView/qml/RootItem.qml +++ b/ChatView/qml/RootItem.qml @@ -139,6 +139,8 @@ ChatRootView { ChatItem { id: chatItemInstance + + width: parent.width msgModel: root.chatModel.processMessageContent(model.content) messageAttachments: model.attachments isUserMessage: model.roleType === ChatModel.User @@ -161,6 +163,7 @@ ChatRootView { id: toolMessageComponent ToolStatusItem { + width: parent.width toolContent: model.content } }