From f667bd11f553a72c6e9cf46ab34a24ab3e4a773d Mon Sep 17 00:00:00 2001 From: Gus Grubba Date: Tue, 3 Mar 2020 21:53:19 -0500 Subject: [PATCH] Move the pre-flight checklist to the upper left corner of the screen. --- src/FlightDisplay/FlightDisplayView.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/FlightDisplay/FlightDisplayView.qml b/src/FlightDisplay/FlightDisplayView.qml index 9bcbf69..92644b0 100644 --- a/src/FlightDisplay/FlightDisplayView.qml +++ b/src/FlightDisplay/FlightDisplayView.qml @@ -778,17 +778,17 @@ Item { //-- Checklist GUI Popup { id: checklistDropPanel - x: Math.round((mainWindow.width - width) * 0.5) - y: Math.round((mainWindow.height - height) * 0.5) + x: toolStrip.x + toolStrip.width + (ScreenTools.defaultFontPixelWidth * 2) + y: toolStrip.y height: checkList.height width: checkList.width modal: true focus: true closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside background: Rectangle { - anchors.fill: parent - color: Qt.rgba(0,0,0,0) - clip: true + anchors.fill: parent + color: Qt.rgba(0,0,0,0) + clip: true } Loader {