From 490404dbb285b89d28964e5389b730ffedfcd7fd Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Wed, 7 Feb 2024 10:08:02 -0500 Subject: [PATCH] Fix issue 1925, scrollbar missing on main conversation. Signed-off-by: Adam Treat --- gpt4all-chat/main.qml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index 67b65167..54d7bdf9 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -904,10 +904,7 @@ Window { model: chatModel ScrollBar.vertical: ScrollBar { - parent: listView.parent - anchors.top: listView.top - anchors.left: listView.right - anchors.bottom: listView.bottom + policy: ScrollBar.AsNeeded } Accessible.role: Accessible.List