Commit f667bd11 authored by Gus Grubba's avatar Gus Grubba

Move the pre-flight checklist to the upper left corner of the screen.

parent 95d2b147
...@@ -778,17 +778,17 @@ Item { ...@@ -778,17 +778,17 @@ Item {
//-- Checklist GUI //-- Checklist GUI
Popup { Popup {
id: checklistDropPanel id: checklistDropPanel
x: Math.round((mainWindow.width - width) * 0.5) x: toolStrip.x + toolStrip.width + (ScreenTools.defaultFontPixelWidth * 2)
y: Math.round((mainWindow.height - height) * 0.5) y: toolStrip.y
height: checkList.height height: checkList.height
width: checkList.width width: checkList.width
modal: true modal: true
focus: true focus: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
background: Rectangle { background: Rectangle {
anchors.fill: parent anchors.fill: parent
color: Qt.rgba(0,0,0,0) color: Qt.rgba(0,0,0,0)
clip: true clip: true
} }
Loader { Loader {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment