Details
-
Bug
-
Resolution: Duplicate
-
P1: Critical
-
None
-
6.6.0, 6.6.1
-
None
Description
Please see the attached screenshots.
- "eeny" selected looks ok
- "meeny" selected: note how "eeny" is misplaced
- "moe" selected: same
Seems only the first TabButton is affected.
Style is "Fusion" (which is also used by MacOS and Windows for TabBar).
import QtQuick import QtQuick.Controls import QtQuick.Layouts Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Pane { anchors.fill: parent contentItem: ColumnLayout { TabBar { Layout.fillWidth: true TabButton { text: "eeny" } TabButton { text: "meeny" } TabButton { text: "moe" } } } } }
Attachments
Issue Links
- duplicates
-
QTBUG-108807 QQC2 TabBar first TabButton visual state incorrect when deselected
- Closed