Browse Source

Flipped width with height

QGC4.4
Gus Grubba 6 years ago
parent
commit
143f365ed9
  1. 4
      src/FlightDisplay/FlightDisplayView.qml

4
src/FlightDisplay/FlightDisplayView.qml

@ -799,8 +799,8 @@ Item {
id: checklistDropPanel id: checklistDropPanel
x: Math.round((mainWindow.width - width) * 0.5) x: Math.round((mainWindow.width - width) * 0.5)
y: Math.round((mainWindow.height - height) * 0.5) y: Math.round((mainWindow.height - height) * 0.5)
height: checkList.width height: checkList.height
width: checkList.height width: checkList.width
modal: true modal: true
focus: true focus: true
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside

Loading…
Cancel
Save