NVDA/Jaws screen reader don't read qml TextArea emoji
Unsolved
QML and Qt Quick
-
Dear Qt experts,
I am using Qt 6.3.1. I find a issue: NVDA/Jaws screen reader don't read qml TextArea emoji
You can see: When TextArea get focus, NVDA/Jaws will anounce: edit test my
In fact I want it anounce: edit test my smile emoji
Could you give some suggestions, thanks a lot~ -
Here is qml file:
import QtQuick 2.3
import QtQuick.Controls 2.0
import QtQuick.Window 2.2Window {
visible: true
width: 1000
height: 800Rectangle { x: 10 y: 10 width: 600 height: 100 border.color: "gray" border.width: 2 TextArea { id: textArea textFormat: TextEdit.RichText wrapMode: Text.WordWrap font.pointSize: 15 text: "<p>test my <img src=\"qrc:/1f642.svg\" height=\"20\" width=\"20\" align=\"middle\" alt=\"smile emoji\" /></p>" color: "black" visible: true anchors { top: parent.top left: parent.left leftMargin: 5 topMargin: 5 } } }
}