Browse Source

Fix hamburger positioning

QGC4.4
DoinLakeFlyer 5 years ago
parent
commit
f24358aefe
  1. 5
      src/PlanView/MissionItemEditor.qml

5
src/PlanView/MissionItemEditor.qml

@ -81,7 +81,6 @@ Rectangle {
id: topRowLayout id: topRowLayout
anchors.margins: _margin anchors.margins: _margin
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right
anchors.top: parent.top anchors.top: parent.top
spacing: _margin spacing: _margin
@ -179,15 +178,13 @@ Rectangle {
text: missionItem.commandName text: missionItem.commandName
color: _outerTextColor color: _outerTextColor
} }
} }
QGCColoredImage { QGCColoredImage {
id: hamburger id: hamburger
anchors.margins: _margin anchors.margins: _margin
anchors.right: parent.right anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: topRowLayout.verticalCenter
width: _hamburgerSize width: _hamburgerSize
height: _hamburgerSize height: _hamburgerSize
sourceSize.height: _hamburgerSize sourceSize.height: _hamburgerSize

Loading…
Cancel
Save