diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index c482822f1670..9dfda52413f4 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -1006,12 +1006,24 @@ Window { } Text { - id: speed + id: device anchors.bottom: textInputView.top anchors.bottomMargin: 20 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 font.pixelSize: theme.fontSizeLarge }