Skip to content

Commit

Permalink
Show the device we're currently using.
Browse files Browse the repository at this point in the history
  • Loading branch information
manyoso committed Sep 13, 2023
1 parent 891ddaf commit 358ff2a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion gpt4all-chat/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 358ff2a

Please sign in to comment.