aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickloader/data/active.8.qml
blob: 3a66d3e99a0cbcda114c474a037e5da945f7c062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0
Rectangle {
    id: root
    color: "blue"
    width: 100; height: 100
    property bool success: false

    Loader {
        anchors.fill: parent
        sourceComponent: Rectangle { color: "red" }
        onLoaded: { root.success = true; } // should be triggered since active is true by default
    }
}