diff --git a/src/VehicleSetup/SetupParameterEditor.qml b/src/VehicleSetup/SetupParameterEditor.qml index e7b92fce22fc943d370a04a61b9c4e0d6b253c03..5856f086b8046d16831e7ab8b48fcbb921e9d57c 100644 --- a/src/VehicleSetup/SetupParameterEditor.qml +++ b/src/VehicleSetup/SetupParameterEditor.qml @@ -28,39 +28,6 @@ import QGroundControl.Controls 1.0 import QGroundControl.ScreenTools 1.0 import QGroundControl.Palette 1.0 -Rectangle { - QGCPalette { id: qgcPal; colorGroupEnabled: true } - - color: qgcPal.window - - // We use an ExclusiveGroup to maintain the visibility of a single editing control at a time - ExclusiveGroup { - id: exclusiveEditorGroup - } - - Column { - anchors.fill:parent - - QGCLabel { - text: "PARAMETER EDITOR" - font.pointSize: ScreenTools.fontPointFactor * (20) - } - - Item { - height: 20 - width: 5 - } - - QGCLabel { - id: infoLabel - width: parent.width - wrapMode: Text.WordWrap - text: "Click a parameter value to modify. Right-click for additional options. Values which have been modified from the default are shown in orange. Use caution when modifying parameters here since the values are not checked for validity." - } - - ParameterEditor { - width: parent.width - height: parent.height - (infoLabel.y + infoLabel.height) - } - } +ParameterEditor { + fullMode: true }