From cb724342d94524061655e362cebd8cd176e89c34 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Fri, 29 Dec 2017 20:30:39 -0800 Subject: [PATCH] Fix images in turned enable/disable --- src/PlanView/SurveyItemEditor.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PlanView/SurveyItemEditor.qml b/src/PlanView/SurveyItemEditor.qml index 8b438dd74..58fad1c1e 100644 --- a/src/PlanView/SurveyItemEditor.qml +++ b/src/PlanView/SurveyItemEditor.qml @@ -409,7 +409,7 @@ Rectangle { FactCheckBox { text: qsTr("Take images in turnarounds") fact: missionItem.cameraTriggerInTurnaround - enabled: !missionItem.hoverAndCapture.rawValue + enabled: missionItem.hoverAndCaptureAllowed ? !missionItem.hoverAndCapture.rawValue : true } SectionHeader { @@ -605,7 +605,7 @@ Rectangle { FactCheckBox { text: qsTr("Take images in turnarounds") fact: missionItem.cameraTriggerInTurnaround - enabled: !missionItem.hoverAndCapture.rawValue + enabled: missionItem.hoverAndCaptureAllowed ? !missionItem.hoverAndCapture.rawValue : true Layout.columnSpan: 2 } -- 2.22.0