QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
PreFlightCheckListShowAction.qml
Go to the documentation of this file.
1import QGroundControl
2import QGroundControl.Controls
3
4ToolStripAction {
5 text: qsTr("Checklist")
6 iconSource: "/qmlimages/check.svg"
7 visible: _useChecklist
8 enabled: _useChecklist && _activeVehicle && !_activeVehicle.armed
9
10 property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
11 property bool _useChecklist: QGroundControl.settingsManager.appSettings.useChecklist.rawValue && QGroundControl.corePlugin.options.preFlightChecklistUrl.toString().length
12}