Commit 953b5eac authored by Patrick José Pereira's avatar Patrick José Pereira
Browse files

TaisyncSettings: Do not translate empty string



Signed-off-by: default avatarPatrick José Pereira <patrickelectric@gmail.com>
parent de5ee10f
......@@ -197,14 +197,14 @@ Rectangle {
Layout.minimumWidth: _labelWidth
}
QGCLabel {
text: QGroundControl.taisyncManager.connected ? QGroundControl.taisyncManager.serialNumber : qsTr("")
text: QGroundControl.taisyncManager.connected ? QGroundControl.taisyncManager.serialNumber : ""
Layout.minimumWidth: _valueWidth
}
QGCLabel {
text: qsTr("Firmware Version:")
}
QGCLabel {
text: QGroundControl.taisyncManager.connected ? QGroundControl.taisyncManager.fwVersion : qsTr("")
text: QGroundControl.taisyncManager.connected ? QGroundControl.taisyncManager.fwVersion : ""
}
}
}
......
Supports Markdown
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