Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.7.0
-
None
-
633a5cf6d8197105d6392dbf56bf0f29f9c84da1
Description
import Qt 4.7
Rectangle { width: 300 height: 200 color: "blue" Loader { // <-- size (0, 0) // Rectangle { anchors.fill: parent; color: "yellow" } anchors.fill: parent anchors.margins: 10 sourceComponent: Component { Rectangle { color: "red" } // <-- size (0, 0) } } }