Browse Source

Merge pull request #8615 from DonLakeFlyer/PlanHamburger

Plan: Fix hamburger positioning
QGC4.4
Don Gagne 5 years ago committed by GitHub
parent
commit
d508515792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/PlanView/MissionItemEditor.qml

5
src/PlanView/MissionItemEditor.qml

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

Loading…
Cancel
Save