From 271f4ed9dea201f63ddfc6ae8e448f4cb079fe37 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Wed, 14 Jan 2015 16:04:09 +0100 Subject: [PATCH] readjust z orders --- compositor/contents/Compositor.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compositor/contents/Compositor.qml b/compositor/contents/Compositor.qml index c62824e1..df8d850e 100644 --- a/compositor/contents/Compositor.qml +++ b/compositor/contents/Compositor.qml @@ -140,7 +140,7 @@ Rectangle { Item { id: keyboardLayer anchors.fill: parent - z: 5 + z: 800 onVisibleChanged: { if (!visible && compositorRoot.shellWindow) { compositorRoot.shellWindow.child.takeFocus(); @@ -303,7 +303,7 @@ Rectangle { ScriptAction { script: { desktopLayer.z = 1 - windowsLayerBackground.z = 2 + windowsLayerBackground.z = 800 } } PropertyAnimation { @@ -344,7 +344,7 @@ Rectangle { compositorRoot.currentWindow = null; } else { desktopLayer.z = 1; - windowsLayerBackground.z = 2; + windowsLayerBackground.z = 800; if (compositorRoot.currentWindow) { compositorRoot.currentWindow.child.takeFocus(); }