aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickwidgets/qquickwidget/data/resizeOverlay.qml
blob: 5547856941c4bceed6a81c45ed1b0869f399ca3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.15

import Test 1.0

Item {
    id: root

    property alias overlay: overlay

    Overlay {
        id: overlay
        // Parent it to the contentItem of the underlying QQuickWindow.
        parent: root.parent
    }
}