QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
FlyViewBottomRightRowLayout.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Layouts
3
4import QGroundControl
5import QGroundControl.Controls
6import QGroundControl.FlyView
7
8RowLayout {
9 TelemetryValuesBar {
10 Layout.alignment: Qt.AlignBottom
11 extraWidth: instrumentPanel.extraValuesWidth
12 settingsGroup: factValueGrid.telemetryBarSettingsGroup
13 specificVehicleForCard: null // Tracks active vehicle
14 }
15
16 FlyViewInstrumentPanel {
17 id: instrumentPanel
18 Layout.alignment: Qt.AlignBottom
19 visible: QGroundControl.corePlugin.options.flyView.showInstrumentPanel && _showSingleVehicleUI
20 }
21}