From 358ff2a47722dc12c3253c3f13bab5e3c38e030f Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Wed, 13 Sep 2023 15:24:33 -0400 Subject: [PATCH] Show the device we're currently using. --- gpt4all-chat/main.qml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 }