From a7721ec597b205edff6e47fe8e8090ec7cf6018f Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Sun, 9 Apr 2023 07:38:25 -0400 Subject: [PATCH] Fix padding. --- main.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.qml b/main.qml index 0411306e..09c81a6c 100644 --- a/main.qml +++ b/main.qml @@ -69,7 +69,7 @@ Window { color: "#d1d5db" padding: 20 font.pixelSize: 24 - text: "Model: GPT-J-6B-4bit" + text: "Model: GPT4ALL-J-6B-4bit" background: Rectangle { color: "#444654" } @@ -152,7 +152,8 @@ Window { anchors.leftMargin: 15 source: LLM.responseInProgress ? "qrc:/gpt4all-chat/icons/stop_generating.svg" : "qrc:/gpt4all-chat/icons/regenerate.svg" } - text: LLM.responseInProgress ? qsTr(" Stop generating") : qsTr(" Regenerate response") + leftPadding: 50 + text: LLM.responseInProgress ? qsTr("Stop generating") : qsTr("Regenerate response") onClicked: { if (LLM.responseInProgress) LLM.stopGenerating()