Use the new MyButton for the regenerate response button.

pull/913/head
Adam Treat 1 year ago
parent 61cbae6617
commit 0185bfb8d6

@ -816,7 +816,7 @@ Window {
} }
} }
Button { MyButton {
visible: chatModel.count && !currentChat.isServer visible: chatModel.count && !currentChat.isServer
Image { Image {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
@ -856,20 +856,8 @@ Window {
anchors.horizontalCenter: textInputView.horizontalCenter anchors.horizontalCenter: textInputView.horizontalCenter
anchors.bottomMargin: 40 anchors.bottomMargin: 40
padding: 15 padding: 15
contentItem: Text { text: currentChat.responseInProgress ? qsTr("Stop generating") : qsTr("Regenerate response")
text: currentChat.responseInProgress ? qsTr("Stop generating") : qsTr("Regenerate response") Accessible.description: qsTr("Controls generation of the response")
color: theme.textColor
Accessible.role: Accessible.Button
Accessible.name: text
Accessible.description: qsTr("Controls generation of the response")
}
background: Rectangle {
opacity: .5
border.color: theme.backgroundLightest
border.width: 1
radius: 10
color: theme.backgroundLight
}
} }
ScrollView { ScrollView {

Loading…
Cancel
Save