diff --git a/src/ui/toolbar/MainToolBar.qml b/src/ui/toolbar/MainToolBar.qml index 3bd098dd7a2ab90725fb5c85a6c151a2036f6eaa..979c2f9836a914c5da5d0fb7a0a9ca3eff894fdb 100644 --- a/src/ui/toolbar/MainToolBar.qml +++ b/src/ui/toolbar/MainToolBar.qml @@ -259,7 +259,7 @@ Rectangle { color: colorWhite } QGCLabel { - text: activeVehicle ? (activeVehicle.satRawHDOP.toFixed(0)) : "N/A" + text: activeVehicle ? (activeVehicle.satRawHDOP < 10000 ? activeVehicle.satRawHDOP.toFixed(0) : "N/A") : "N/A" color: colorWhite } QGCLabel { @@ -267,7 +267,7 @@ Rectangle { color: colorWhite } QGCLabel { - text: activeVehicle ? (activeVehicle.satRawVDOP.toFixed(0)) : "N/A" + text: activeVehicle ? (activeVehicle.satRawVDOP < 10000 ? activeVehicle.satRawVDOP.toFixed(0) : "N/A") : "N/A" color: colorWhite } QGCLabel {