diff --git a/src/FlightDisplay/FlightDisplayViewMap.qml b/src/FlightDisplay/FlightDisplayViewMap.qml index 77a22c88574041533d175c37846d911eedd1b3fc..df01d8b74fda9ff6ae0c5fafd7a0188c615a333b 100644 --- a/src/FlightDisplay/FlightDisplayViewMap.qml +++ b/src/FlightDisplay/FlightDisplayViewMap.qml @@ -261,7 +261,7 @@ FlightMap { // GoTo here waypoint MapQuickItem { coordinate: _gotoHereCoordinate - visible: _activeVehicle && _activeVehicle.guidedMode && _gotoHereCoordinate.isValid + visible: _activeVehicle && _activeVehicle.guidedModeSupported && _gotoHereCoordinate.isValid z: QGroundControl.zOrderMapItems anchorPoint.x: sourceItem.anchorPointX anchorPoint.y: sourceItem.anchorPointY diff --git a/src/FlightDisplay/GuidedActionsController.qml b/src/FlightDisplay/GuidedActionsController.qml index f111c6fb018012f3612bbaa633519ff526a75533..db16ef4dec84f7e29c624041eb520167834ef9d9 100644 --- a/src/FlightDisplay/GuidedActionsController.qml +++ b/src/FlightDisplay/GuidedActionsController.qml @@ -101,7 +101,7 @@ Item { property bool showChangeAlt: (_activeVehicle && _vehicleFlying) && _activeVehicle.guidedModeSupported && _vehicleArmed && !_missionActive property bool showOrbit: !_hideOrbit && _activeVehicle && _vehicleFlying && _activeVehicle.orbitModeSupported && _vehicleArmed && !_missionActive property bool showLandAbort: _activeVehicle && _vehicleFlying && _activeVehicle.fixedWing && _vehicleLanding - property bool showGotoLocation: _activeVehicle && _activeVehicle.guidedMode && _vehicleFlying + property bool showGotoLocation: _activeVehicle && _vehicleFlying property bool guidedUIVisible: guidedActionConfirm.visible || guidedActionList.visible