From 36e5803893ca09b15e60b113274cdd26fefe28b5 Mon Sep 17 00:00:00 2001 From: AT Date: Sun, 30 Jun 2024 23:27:30 -0400 Subject: [PATCH] This bottom padding while doing text generation is no longer necessary with the tray. (#2495) 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 c47b537a..07978436 100644 --- a/gpt4all-chat/qml/ChatView.qml +++ b/gpt4all-chat/qml/ChatView.qml @@ -1328,7 +1328,7 @@ Rectangle { footer: Item { id: bottomPadding width: parent.width - height: 60 + height: 0 } } }