From 16657ae439a7c7872fc4c64a8508eb3c09d51e73 Mon Sep 17 00:00:00 2001 From: DonLakeFlyer Date: Thu, 17 Aug 2017 10:27:43 -0700 Subject: [PATCH] Add missing settings to Manual grid --- src/PlanView/SurveyItemEditor.qml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/PlanView/SurveyItemEditor.qml b/src/PlanView/SurveyItemEditor.qml index 5f68e3dcc..9f417ffe7 100644 --- a/src/PlanView/SurveyItemEditor.qml +++ b/src/PlanView/SurveyItemEditor.qml @@ -584,6 +584,24 @@ Rectangle { Layout.fillWidth: true } + FactCheckBox { + text: qsTr("Hover and capture image") + fact: missionItem.hoverAndCapture + visible: missionItem.hoverAndCaptureAllowed + Layout.columnSpan: 2 + onClicked: { + if (checked) { + missionItem.cameraTriggerInTurnaround.rawValue = false + } + } + } + + FactCheckBox { + text: qsTr("Take images in turnarounds") + fact: missionItem.cameraTriggerInTurnaround + enabled: !missionItem.hoverAndCapture.rawValue + Layout.columnSpan: 2 + } QGCCheckBox { text: qsTr("Refly at 90 degree offset") -- 2.22.0