Browse Source

fix gpsrtkindicator warning (#10149)

QGC4.4
holden-zenith 3 years ago committed by GitHub
parent
commit
6a96c48feb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/ui/toolbar/GPSRTKIndicator.qml

2
src/ui/toolbar/GPSRTKIndicator.qml

@ -23,7 +23,7 @@ Item { @@ -23,7 +23,7 @@ Item {
anchors.top: parent.top
anchors.bottom: parent.bottom
property bool showIndicator: QGroundControl.gpsRtk.connected.value
property bool showIndicator: QGroundControl.gpsRtk ? QGroundControl.gpsRtk.connected.value : false
Component {
id: gpsInfo

Loading…
Cancel
Save