Commit 28b7de31 authored by Don Gagne's avatar Don Gagne

Allow 1 digit of precision on hdop

parent d9ae3bd8
......@@ -173,7 +173,7 @@ Row {
visible: activeVehicle && !isNaN(activeVehicle.gps.hdop.value)
font.pointSize: ScreenTools.smallFontPointSize
color: qgcPal.buttonText
text: activeVehicle ? activeVehicle.gps.hdop.value.toFixed(0) : ""
text: activeVehicle ? activeVehicle.gps.hdop.value.toFixed(1) : ""
}
MouseArea {
anchors.fill: parent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment