Browse Source

Merge pull request #4484 from dogmaphobic/waitMessage

Add message telling QGC is waiting for a vehicle
QGC4.4
Gus Grubba 8 years ago committed by GitHub
parent
commit
d2c10b9856
  1. 10
      src/ui/toolbar/MainToolBar.qml

10
src/ui/toolbar/MainToolBar.qml

@ -212,6 +212,16 @@ Rectangle { @@ -212,6 +212,16 @@ Rectangle {
Layout.fillWidth: true
visible: _activeVehicle
}
QGCLabel {
id: waitForVehicle
anchors.verticalCenter: parent.verticalCenter
text: qsTr("Waiting For Vehicle Connection")
font.pointSize: ScreenTools.mediumFontPointSize
font.family: ScreenTools.demiboldFontFamily
color: colorRed
visible: !_activeVehicle
}
}
// Progress bar

Loading…
Cancel
Save