Details
-
Suggestion
-
Resolution: Unresolved
-
P4: Low
-
4.7.1
-
None
Description
The following should print
Height of children: 320
but it doesn't.
Rectangle { width: 640; height: 480; color: "blue" Component.onCompleted: { print("Height of children: " + childrenRect.height); } Rectangle { anchors.fill: parent scale: 0.5 rotation: 90 color: "red" } }