You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
440 B
18 lines
440 B
11 years ago
|
import QtQuick 2.2
|
||
|
import QtQuick.Controls 1.2
|
||
|
import QtQuick.Controls.Styles 1.2
|
||
|
import QGroundControl.FactSystem 1.0
|
||
|
|
||
|
Rectangle {
|
||
|
QGCPalette { id: palette; colorGroup: QGCPalette.Active }
|
||
|
|
||
|
width: 400
|
||
|
height: 400
|
||
|
color: palette.window
|
||
|
|
||
|
Column {
|
||
|
Label { text: "Work in Progress"; color: palette.windowText }
|
||
|
Label { text: autopilot.parameters["RTL_RETURN_ALT"].value; color: palette.windowText }
|
||
|
}
|
||
|
}
|