diff --git a/src/FlightDisplay/VTOLChecklist.qml b/src/FlightDisplay/VTOLChecklist.qml index 40aa5ace41f5658bc6a7385709cb64d1c453f2cc..f0235e399cc6e353a2e5053dbc351c0da6c728e0 100644 --- a/src/FlightDisplay/VTOLChecklist.qml +++ b/src/FlightDisplay/VTOLChecklist.qml @@ -17,8 +17,6 @@ import QGroundControl.Controls 1.0 import QGroundControl.FlightDisplay 1.0 import QGroundControl.Vehicle 1.0 -import CustomQuickInterface 1.0 - Item { property var model: listModel PreFlightCheckModel { @@ -26,31 +24,6 @@ Item { PreFlightCheckGroup { name: qsTr("VTOL Initial Checks") - // Standard check list items (group 0) - Available from the start - Rectangle { - width: ScreenTools.defaultFontPixelWidth * 40 - height: testFlight.height + ScreenTools.defaultFontPixelHeight - color: qgcPal.button - property bool passed: true - function reset() { - if(activeVehicle) { - CustomQuickInterface.testFlight = false - activeVehicle.checkListState = Vehicle.CheckListNotSetup - } - } - QGCCheckBox { - id: testFlight - text: "Test Flight" - enabled: !CustomQuickInterface.debugBuild - checked: CustomQuickInterface.testFlight - anchors.centerIn: parent - onClicked: CustomQuickInterface.testFlight = checked - Component.onCompleted: { - CustomQuickInterface.testFlight = false - } - } - } - PreFlightCheckButton { name: qsTr("Hardware") manualText: qsTr("Props mounted? Wings secured? Tail secured?")