Browse Source

Merge pull request #2888 from DonLakeFlyer/MobileWording

Mobile builds say "Click Firmware on the right ..."
QGC4.4
Don Gagne 9 years ago
parent
commit
85557554f8
  1. 3
      src/VehicleSetup/SetupView.qml

3
src/VehicleSetup/SetupView.qml

@ -165,7 +165,8 @@ Rectangle { @@ -165,7 +165,8 @@ Rectangle {
horizontalAlignment: Text.AlignHCenter
wrapMode: Text.WordWrap
font.pixelSize: ScreenTools.largeFontPixelSize
text: "Connect vehicle to your device and QGroundControl will automatically detect to it. Click Firmware on the left to upgrade your vehicle."
text: "Connect vehicle to your device and QGroundControl will automatically detect to it." +
(ScreenTools.isMobile ? "" : " Click Firmware on the left to upgrade your vehicle.")
onLinkActivated: Qt.openUrlExternally(link)
}

Loading…
Cancel
Save