diff --git a/src/PlanView/SurveyItemEditor.qml b/src/PlanView/SurveyItemEditor.qml index 8b438dd7421d97644d9a19e189bda3b37dce7718..58fad1c1e11da3041c653ee2d49faf9f3a57185b 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 }