fixed an issue where the searching for gps message would not initially appear in the tracking app until the first fix was found

This commit is contained in:
Adrian Riedel
2016-09-21 15:14:55 +02:00
parent 92367dd580
commit 0d08566bb1
@@ -69,6 +69,9 @@ public class TrackingFragment extends BaseFragment {
qualityIndicator.setSignalQuality(savedInstanceState.getInt(SIS_GPS_QUALITY));
accuracyText.setText(savedInstanceState.getString(SIS_GPS_ACCURACY));
unsentFixesText.setText(savedInstanceState.getString(SIS_GPS_UNSENT_FIXES));
} else {
//initially set quality to "No GPS" on start tracking
updateTrackingStatus(GPSQuality.noSignal);
}
}