aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/QTBUG_30183.qml
blob: 1f626d969fc2d756462b5e97f9df7262bddb54ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0

Loader {
    width: implicitWidth
    height: implicitHeight

    sourceComponent: Rectangle {
        color: "green"
        implicitWidth: 240
        implicitHeight: 120
    }
}