Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.3.0 Beta1
-
None
-
Fedora 20 / 64 bit / Gnome 3 desktop
-
qtquickcontrols#release: f42ef1db6a111fd420776da2c620be9cefba7f14
Description
Using TabView, the tabs are not painted properly. This works correctly in Qt 5.2.1 but not in Qt 5.3.0 (recent Snapshot). See attached example project and screenshots.
import QtQuick 2.2 import QtQuick.Controls 1.1 ApplicationWindow { visible: true width: 640 height: 480 title: "Window Title" TabView { anchors.fill: parent Tab { title: "Tab One" Text { text: "One" } } Tab { title: "Tab Two" Text { text: "Two" } } } }