From fc5dc9dd1a0b2e118d377c4b858d5e1c28718f3b Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Thu, 27 Jun 2024 00:36:45 -0400 Subject: [PATCH] Fix the scrollbar so it doesn't overlap content on chat view. Signed-off-by: Adam Treat --- gpt4all-chat/qml/ChatView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt4all-chat/qml/ChatView.qml b/gpt4all-chat/qml/ChatView.qml index 87fd5ba9..25010721 100644 --- a/gpt4all-chat/qml/ChatView.qml +++ b/gpt4all-chat/qml/ChatView.qml @@ -714,7 +714,7 @@ Rectangle { Accessible.description: qsTr("prompt / response pairs from the conversation") delegate: GridLayout { - width: listView.contentItem.width + width: listView.contentItem.width - 15 rows: 3 columns: 2