QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FlyViewGripperButton.qml
Go to the documentation of this file.
1import QGroundControl
2import QGroundControl.FlyView
3
4ToolStripAction {
5 id: action
6 text: qsTr("Gripper")
7 iconSource: "/res/Gripper.svg"
8 visible: _gripperAvailable
9
10 property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
11 property bool _gripperAvailable: _activeVehicle ? _activeVehicle.hasGripper : false
12
13 dropPanelComponent: Component {
14 FlyViewGripperDropPanel {
15 }
16 }
17}