diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index 54d7bdf9..4cfb11ad 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -369,7 +369,7 @@ Window { highlighted: comboBox.highlightedIndex === index } Accessible.role: Accessible.ComboBox - Accessible.name: qsTr("List of available models") + Accessible.name: comboBox.currentModelName Accessible.description: qsTr("The top item is the current model") onActivated: function (index) { currentChat.stopGenerating() @@ -957,7 +957,7 @@ Window { } Accessible.role: Accessible.Paragraph - Accessible.name: name + Accessible.name: text Accessible.description: name === qsTr("Response: ") ? "The response by the model" : "The prompt by the user" topPadding: 20 diff --git a/gpt4all-chat/qml/ChatDrawer.qml b/gpt4all-chat/qml/ChatDrawer.qml index fbc60442..2c4350b0 100644 --- a/gpt4all-chat/qml/ChatDrawer.qml +++ b/gpt4all-chat/qml/ChatDrawer.qml @@ -131,7 +131,7 @@ Drawer { } } Accessible.role: Accessible.Button - Accessible.name: qsTr("Select the current chat") + Accessible.name: text Accessible.description: qsTr("Select the current chat or edit the chat when in edit mode") } Row {