From 86e862df7e151f892583e301c165b8d0c930933a Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Wed, 13 Sep 2023 15:48:55 -0400 Subject: [PATCH] Fix up the name and formatting. --- gpt4all-chat/main.qml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index 9dfda524..6be65542 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -1012,19 +1012,8 @@ Window { anchors.right: parent.right anchors.rightMargin: 30 color: theme.mutedTextColor - visible: speed.text !== "" - text: MySettings.device - font.pixelSize: theme.fontSizeLarge - 1 - } - - Text { - id: speed - anchors.bottom: device.bottom - anchors.bottomMargin: 20 - anchors.right: parent.right - anchors.rightMargin: 30 - color: theme.mutedTextColor - text: currentChat.tokenSpeed + visible: currentChat.tokenSpeed !== "" + text: qsTr("Speed: ") + currentChat.tokenSpeed + "
" + qsTr("Device: ") + MySettings.device font.pixelSize: theme.fontSizeLarge }