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 }