Commit 73d1456d authored by Don Gagne's avatar Don Gagne

Small tweak to serial ui

parent 01c4ef3c
......@@ -50,11 +50,17 @@ Item {
width: _firstColumn
anchors.verticalCenter: parent.verticalCenter
}
QGCLabel {
text: qsTr("No serial ports available");
visible: QGroundControl.linkManager.serialPortStrings.length == 0
}
QGCComboBox {
id: commPortCombo
width: _secondColumn
model: QGroundControl.linkManager.serialPortStrings
id: commPortCombo
anchors.verticalCenter: parent.verticalCenter
width: _secondColumn
model: QGroundControl.linkManager.serialPortStrings
visible: QGroundControl.linkManager.serialPortStrings.length > 0
onActivated: {
if (index != -1) {
subEditConfig.portName = QGroundControl.linkManager.serialPorts[index]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment