From d021a52035b2bd666673fca846fd7af54ef12068 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Sat, 11 Jun 2016 11:04:30 -0700 Subject: [PATCH] Combo Boxes clipping test --- src/VehicleSetup/FirmwareUpgrade.qml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/VehicleSetup/FirmwareUpgrade.qml b/src/VehicleSetup/FirmwareUpgrade.qml index 51b665076..335f4c640 100644 --- a/src/VehicleSetup/FirmwareUpgrade.qml +++ b/src/VehicleSetup/FirmwareUpgrade.qml @@ -244,10 +244,11 @@ QGCView { } QGCComboBox { - id: vehicleTypeSelectionCombo - width: 200 - visible: apmFlightStack.checked - model: controller.apmAvailableVersions + id: vehicleTypeSelectionCombo + anchors.left: parent.left + anchors.right: parent.right + visible: apmFlightStack.checked + model: controller.apmAvailableVersions } Row { @@ -291,7 +292,8 @@ QGCView { QGCComboBox { id: firmwareVersionCombo - width: 200 + anchors.left: parent.left + anchors.right: parent.right visible: showFirmwareTypeSelection model: px4Flow ? px4FlowTypeList : firmwareTypeList currentIndex: controller.selectedFirmwareType -- 2.22.0