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
This commit is contained in:
Arjen Hiemstra 2015-05-27 16:26:40 +02:00
parent 1471a6815f
commit 0885d1433d

View File

@ -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;
}
}
}