summaryrefslogtreecommitdiffstats
path: root/examples/wayland/ivi-compositor/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wayland/ivi-compositor/main.qml')
-rw-r--r--examples/wayland/ivi-compositor/main.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/wayland/ivi-compositor/main.qml b/examples/wayland/ivi-compositor/main.qml
index 055d10d30..555f6467c 100644
--- a/examples/wayland/ivi-compositor/main.qml
+++ b/examples/wayland/ivi-compositor/main.qml
@@ -48,14 +48,15 @@ WaylandCompositor {
onWidthChanged: handleResized()
onHeightChanged: handleResized()
function handleResized() {
- shellSurface.sendConfigure(Qt.size(width, height));
+ if (width > 0 && height > 0)
+ shellSurface.sendConfigure(Qt.size(width, height));
}
//! [resizing]
}
}
//! [connecting]
IviApplication {
- onIviSurfaceCreated: {
+ onIviSurfaceCreated: (iviSurface) => {
var surfaceArea = iviSurface.iviId === 1337 ? leftArea : rightArea;
var item = chromeComponent.createObject(surfaceArea, { "shellSurface": iviSurface } );
item.handleResized();