1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

OP-1005 Reduced the number of decimals for the GPS PDP value to 1.

This commit is contained in:
Fredrik Arvidsson 2013-06-18 18:35:13 +02:00
parent 68b2b28594
commit 095d71b574

View File

@ -31,7 +31,7 @@ Item {
Text {
id: gps_text
text: "GPS: " + GPSPosition.Satellites + "\nPDP: " + Math.round(GPSPosition.PDOP*1000)/1000
text: "GPS: " + GPSPosition.Satellites + "\nPDP: " + Math.round(GPSPosition.PDOP*10)/10
color: "white"
font.family: "Arial"
font.pixelSize: telemetry_status.height * 0.75