From 0885d1433d62c5f7f46ffdbbede9e5e68a97163f Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Wed, 27 May 2015 16:26:40 +0200 Subject: [PATCH] Move Sidebar so it is on top of everything else This fixes an issue where the tooltip would be displayed below the layer view slider. Additional fix for Asana issue 39 --- resources/qml/Cura.qml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 7e48765f17..a2eeba59cd 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -144,23 +144,6 @@ UM.MainWindow { } } - Sidebar { - id: sidebar; - - anchors { - top: parent.top; - bottom: parent.bottom; - right: parent.right; - rightMargin: UM.Theme.sizes.window_margin.width; - } - - width: UM.Theme.sizes.panel.width; - - addMachineAction: actions.addMachine; - configureMachinesAction: actions.configureMachines; - saveAction: actions.save; - } - UM.MessageStack { anchors { left: toolbar.right; @@ -265,6 +248,23 @@ UM.MainWindow { bottomMargin: UM.Theme.sizes.window_margin.height; } } + + Sidebar { + id: sidebar; + + anchors { + top: parent.top; + bottom: parent.bottom; + right: parent.right; + rightMargin: UM.Theme.sizes.window_margin.width; + } + + width: UM.Theme.sizes.panel.width; + + addMachineAction: actions.addMachine; + configureMachinesAction: actions.configureMachines; + saveAction: actions.save; + } } }