aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem/data/setParentInWindowChange.qml
blob: d68b7adb72af6aab0a07e172c959ca5216eecf59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.12

Rectangle {
    width: 800
    height: 600
    Item {
        id: it
        onWindowChanged: () => it.parent = newParent
    }

    Item { id: newParent }
}