gps related minor fixes

This commit is contained in:
Mikkeli Matlock
2026-02-09 17:48:38 +09:00
parent 47b3427e63
commit a46496d688
4 changed files with 16 additions and 2 deletions

View File

@@ -70,7 +70,7 @@ class SystemBar extends StatelessWidget {
value: gpsState == 'acquiring' ? 'ACQ'
: gpsState == 'fix' ? (gpsSatellites?.toString() ?? 'N/A')
: '0', // lost or unknown
isAbnormal: gpsState != 'fix',
isAbnormal: gpsState != 'fix' || gpsSatellites == null,
alignment: Alignment.centerLeft,
labelSize: labelSize,
valueSize: valueSize,