Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.9.0 RC
-
None
-
-
0475bc57d (dev)
Description
With this QML code
import QtQuick import QtQuick.ControlsWindow { width: 640 height: 480 visible: true title: qsTr("Hello World") TabBar { Accessible.role: Accessible.PageTabList Accessible.name: "Something" TabButton { text: "HELLO" Accessible.name: text Accessible.role: Accessible.PageTab } TabButton { text: "BYE" Accessible.name: text Accessible.role: Accessible.PageTab } } }
The tabs are read as radio buttons and the tabbar is read as group. They should be read as Tab and Tab Group instead.