summaryrefslogtreecommitdiffstats
path: root/examples/wayland/subsurface/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wayland/subsurface/main.qml')
-rw-r--r--examples/wayland/subsurface/main.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/wayland/subsurface/main.qml b/examples/wayland/subsurface/main.qml
index fa71d4b6b..8d221401b 100644
--- a/examples/wayland/subsurface/main.qml
+++ b/examples/wayland/subsurface/main.qml
@@ -69,4 +69,22 @@ Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
text: syncStatus.sync ? "sync mode" : "de-sync mode"
}
+
+ // If you can see these rectangles, something's not right
+ Rectangle {
+ //Child at (150, 70, 100, 100)
+ color: "yellow"
+ x: 150
+ y: 70
+ width:100
+ height:100
+ }
+ Rectangle {
+ //Shm at (30, 30, 50, 50)
+ color: "yellow"
+ x: 30
+ y: 30
+ width: 50
+ height: 50
+ }
}