From b0c471aed8acd628e5b987cdf2540871301939ae Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Wed, 21 Feb 2024 10:49:13 -0500 Subject: [PATCH] Make the reload/regenerate buttons a little bit larger font. Signed-off-by: Adam Treat --- gpt4all-chat/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index be1ec94e..b3392fbd 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -1273,7 +1273,7 @@ Window { topPadding: 8 bottomPadding: 8 text: currentChat.responseInProgress ? qsTr("Stop generating") : qsTr("Regenerate response") - fontPixelSize: theme.fontSizeSmaller + fontPixelSize: theme.fontSizeSmall Accessible.description: qsTr("Controls generation of the response") } @@ -1304,7 +1304,7 @@ Window { topPadding: 8 bottomPadding: 8 text: qsTr("Reload \u00B7 ") + currentChat.modelInfo.name - fontPixelSize: theme.fontSizeSmaller + fontPixelSize: theme.fontSizeSmall Accessible.description: qsTr("Reloads the model") } }