Skip to content

Commit

Permalink
PlanToolBarIndicators: Use more descriptive label for distance to WP
Browse files Browse the repository at this point in the history
The current implementation displays two different distances by the same
name. One of the distances is actually the distance to the previous
waypoint. For the user its "hard" to tell which one is which. I try to
resolve this with a more descriptive label for the distance to the
previous waypoint.

An alternative is maybe to rename the other distance to total distance
or total mission distance.
  • Loading branch information
booo committed Apr 6, 2023
1 parent afa3bbb commit 3022556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PlanView/PlanToolBarIndicators.qml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Item {

Item { width: 1; height: 1 }

QGCLabel { text: qsTr("Distance:"); font.pointSize: _dataFontSize; }
QGCLabel { text: qsTr("Dist prev WP:"); font.pointSize: _dataFontSize; }
QGCLabel {
text: _distanceText
font.pointSize: _dataFontSize
Expand Down

0 comments on commit 3022556

Please sign in to comment.