-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.5.0
-
None
The following code produces qtbug48145-actual.png, when I would expect qtbug48145-expected.png:
import QtQuick 2.0 import QtQuick.Window 2.0 Window { width: 200 height: 200 visible: true Rectangle { id: button // Works // implicitWidth: label.implicitWidth // Doesn't work implicitWidth: Math.max(36, label.implicitWidth) implicitHeight: 36 anchors.centerIn: parent color: "transparent" border.color: "black" Component.onCompleted: print("width=",width) Text { id: label text: "Style me!" anchors.fill: parent horizontalAlignment: Text.AlignHCenter Rectangle { anchors.fill: parent color: "transparent" border.color: "darkorange" } } } }
Using the commented out code instead works.