diff options
| author | Tarja Sundqvist <tarja.sundqvist@qt.io> | 2025-12-15 16:14:22 +0200 |
|---|---|---|
| committer | Tarja Sundqvist <tarja.sundqvist@qt.io> | 2025-12-15 16:14:22 +0200 |
| commit | b58ec3b086518da5aa573f99426235854c23e35f (patch) | |
| tree | 861a9935d8f1cdba2fdca546836a351736dbddbf /tests/auto/quickwidgets/qquickwidget/data/overlayGeometry.qml | |
| parent | 4826f86e274f1b29bd769e6790824f9e62a40f62 (diff) | |
| parent | 22032227d16c39211e2ebceef97d21f4d89c7c87 (diff) | |
Merge tag 'v6.5.8-lts-lgpl' into 6.56.5
Qt 6.5.8-lts-lgpl release
Diffstat (limited to 'tests/auto/quickwidgets/qquickwidget/data/overlayGeometry.qml')
| -rw-r--r-- | tests/auto/quickwidgets/qquickwidget/data/overlayGeometry.qml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/auto/quickwidgets/qquickwidget/data/overlayGeometry.qml b/tests/auto/quickwidgets/qquickwidget/data/overlayGeometry.qml new file mode 100644 index 0000000000..115099ee3a --- /dev/null +++ b/tests/auto/quickwidgets/qquickwidget/data/overlayGeometry.qml @@ -0,0 +1,24 @@ +import QtQuick +import QtQuick.Controls + +Rectangle +{ + objectName: "rectangle" + width: 255 + height: 381 + visible: true + + Popup + { + objectName: "popup" + anchors.centerIn: parent + modal: true + + Rectangle + { + color: "red" + width: 40 + height: 40 + } + } +} |
