Commit 5b54e2a5 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #4100 from DonLakeFlyer/SerialComm

Small tweak to serial ui
parents abc118d0 73d1456d
...@@ -50,11 +50,17 @@ Item { ...@@ -50,11 +50,17 @@ Item {
width: _firstColumn width: _firstColumn
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
} }
QGCLabel {
text: qsTr("No serial ports available");
visible: QGroundControl.linkManager.serialPortStrings.length == 0
}
QGCComboBox { QGCComboBox {
id: commPortCombo id: commPortCombo
anchors.verticalCenter: parent.verticalCenter
width: _secondColumn width: _secondColumn
model: QGroundControl.linkManager.serialPortStrings model: QGroundControl.linkManager.serialPortStrings
anchors.verticalCenter: parent.verticalCenter visible: QGroundControl.linkManager.serialPortStrings.length > 0
onActivated: { onActivated: {
if (index != -1) { if (index != -1) {
subEditConfig.portName = QGroundControl.linkManager.serialPorts[index] 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