From b36a520207028462511cfbc964423d686356a209 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 23 May 2023 18:19:36 -0400 Subject: [PATCH] Fix the build. --- gpt4all-chat/main.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index f65470d7..2fed822a 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -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() }