|
|
|
@ -70,12 +70,6 @@ Item {
@@ -70,12 +70,6 @@ Item {
|
|
|
|
|
readonly property string _mainIsMapKey: "MainFlyWindowIsMap" |
|
|
|
|
readonly property string _PIPVisibleKey: "IsPIPVisible" |
|
|
|
|
|
|
|
|
|
onVisibleChanged: { |
|
|
|
|
if (activeVehicle && !_checklistComplete && _enforceChecklist) { |
|
|
|
|
checklistPopupTimer.restart() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Timer { |
|
|
|
|
id: checklistPopupTimer |
|
|
|
|
interval: 1000 |
|
|
|
@ -122,6 +116,12 @@ Item {
@@ -122,6 +116,12 @@ Item {
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function showPreflightChecklistIfNeeded () { |
|
|
|
|
if (activeVehicle && !_checklistComplete && _enforceChecklist) { |
|
|
|
|
checklistPopupTimer.restart() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Connections { |
|
|
|
|
target: _missionController |
|
|
|
|
onResumeMissionUploadFail: guidedActionsController.confirmAction(guidedActionsController.actionResumeMissionUploadFail) |
|
|
|
|