mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
Fix the build.
This commit is contained in:
parent
bea4dc2160
commit
25b4c1a6aa
@ -649,9 +649,9 @@ Window {
|
||||
anchors.fill: parent
|
||||
source: "qrc:/gpt4all/icons/thumbs_up.svg"
|
||||
}
|
||||
Accessible.role = Accessible.Button
|
||||
Accessible.name = qsTr("Thumbs up")
|
||||
Accessible.description = qsTr("Gives a thumbs up to the response")
|
||||
Accessible.role: Accessible.Button
|
||||
Accessible.name: qsTr("Thumbs up")
|
||||
Accessible.description: qsTr("Gives a thumbs up to the response")
|
||||
onClicked: {
|
||||
if (thumbsUpState && !thumbsDownState)
|
||||
return
|
||||
@ -685,9 +685,9 @@ Window {
|
||||
anchors.fill: parent
|
||||
source: "qrc:/gpt4all/icons/thumbs_down.svg"
|
||||
}
|
||||
Accessible.role = Accessible.Button
|
||||
Accessible.name = qsTr("Thumbs down")
|
||||
Accessible.description = qsTr("Opens thumbs down dialog")
|
||||
Accessible.role: Accessible.Button
|
||||
Accessible.name: qsTr("Thumbs down")
|
||||
Accessible.description: qsTr("Opens thumbs down dialog")
|
||||
onClicked: {
|
||||
thumbsDownDialog.open()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user