Browse Source

Combo Boxes clipping test

QGC4.4
Don Gagne 9 years ago
parent
commit
d021a52035
  1. 12
      src/VehicleSetup/FirmwareUpgrade.qml

12
src/VehicleSetup/FirmwareUpgrade.qml

@ -244,10 +244,11 @@ QGCView {
} }
QGCComboBox { QGCComboBox {
id: vehicleTypeSelectionCombo id: vehicleTypeSelectionCombo
width: 200 anchors.left: parent.left
visible: apmFlightStack.checked anchors.right: parent.right
model: controller.apmAvailableVersions visible: apmFlightStack.checked
model: controller.apmAvailableVersions
} }
Row { Row {
@ -291,7 +292,8 @@ QGCView {
QGCComboBox { QGCComboBox {
id: firmwareVersionCombo id: firmwareVersionCombo
width: 200 anchors.left: parent.left
anchors.right: parent.right
visible: showFirmwareTypeSelection visible: showFirmwareTypeSelection
model: px4Flow ? px4FlowTypeList : firmwareTypeList model: px4Flow ? px4FlowTypeList : firmwareTypeList
currentIndex: controller.selectedFirmwareType currentIndex: controller.selectedFirmwareType

Loading…
Cancel
Save