QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
GuidedToolStripAction.qml
Go to the documentation of this file.
1import QGroundControl
2import QGroundControl.Controls
3
4ToolStripAction {
5 property int actionID
6 property string message
7
8 property var _guidedController: globals.guidedControllerFlyView
9
10 onTriggered: {
11 _guidedController.closeAll()
12 _guidedController.confirmAction(actionID)
13 }
14}