aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickloader/data/QTBUG_17114.qml
blob: 74020375538e28568030c7f4e9710cc322986b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import QtQuick 2.0

Rectangle {
    property real loaderWidth: loader.width
    property real loaderHeight: loader.height
    width: 200
    height: 200

    Loader {
        id: loader
        sourceComponent: Item {
            property real iwidth: 32
            property real iheight: 32
            width: iwidth
            height: iheight
        }
    }
}