Browse Source

Merge pull request #6774 from DonLakeFlyer/ComplexItemChangeCommand

Plan: Change Command only supported for Simple Items
QGC4.4
Don Gagne 7 years ago committed by GitHub
parent
commit
b4fed39b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/PlanView/MissionItemEditor.qml

2
src/PlanView/MissionItemEditor.qml

@ -142,7 +142,7 @@ Rectangle { @@ -142,7 +142,7 @@ Rectangle {
MenuItem {
text: qsTr("Change command...")
onTriggered: commandPicker.clicked()
visible: !_waypointsOnlyMode
visible: missionItem.isSimpleItem && !_waypointsOnlyMode
}
MenuItem {

Loading…
Cancel
Save