Browse Source

Merge pull request #2066 from DonLakeFlyer/HelpMargins

Correct anchors for Help panel
QGC4.4
Gus Grubba 9 years ago
parent
commit
465d562f0a
  1. 5
      src/MissionEditor/MissionEditor.qml

5
src/MissionEditor/MissionEditor.qml

@ -561,7 +561,8 @@ QGCView { @@ -561,7 +561,8 @@ QGCView {
anchors.margins: margins
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.left: addMissionItemsButton.right
anchors.right: missionItemEditor.left
width: parent.width - (margins * 2) - _rightPanelWidth
visible: helpButton.checked
color: qgcPal.window
@ -569,7 +570,7 @@ QGCView { @@ -569,7 +570,7 @@ QGCView {
radius: ScreenTools.defaultFontPixelHeight
z: editorMap.zOrderTopMost
readonly property real margins: ScreenTools.defaultFontPixelHeight * 4
readonly property real margins: ScreenTools.defaultFontPixelHeight
Image {
anchors.margins: ScreenTools.defaultFontPixelHeight

Loading…
Cancel
Save