From 9f93c38a1058559c8c364d93accc5df365773fb8 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 7 Aug 2018 13:55:35 -0700 Subject: [PATCH] Change Command only supported for Simple Items --- src/PlanView/MissionItemEditor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlanView/MissionItemEditor.qml b/src/PlanView/MissionItemEditor.qml index cf7f74337e..511e6898f6 100644 --- a/src/PlanView/MissionItemEditor.qml +++ b/src/PlanView/MissionItemEditor.qml @@ -142,7 +142,7 @@ Rectangle { MenuItem { text: qsTr("Change command...") onTriggered: commandPicker.clicked() - visible: !_waypointsOnlyMode + visible: missionItem.isSimpleItem && !_waypointsOnlyMode } MenuItem { -- GitLab