Skip to content

Commit

Permalink
minor change in format
Browse files Browse the repository at this point in the history
Signed-off-by: youhy <haoyuan2019@outlook.com>
  • Loading branch information
AzulRadio committed Aug 18, 2022
1 parent db1c6fb commit c3754d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/ignition/gui/qml/GzPose.qml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ Item {
}

Text {
text: useRadian ? 'Roll (rad)' : 'Roll (deg)'
text: 'Roll ' + (useRadian ? '(rad)' : '(deg)')
leftPadding: 5
color: Material.theme == Material.Light ? "#444444" : "#bbbbbb"
font.pointSize: 12
Expand Down Expand Up @@ -211,7 +211,7 @@ Item {
}

Text {
text: useRadian ? 'Pitch (rad)' : 'Pitch (deg)'
text: 'Pitch ' + (useRadian ? '(rad)' : '(deg)')
leftPadding: 5
color: Material.theme == Material.Light ? "#444444" : "#bbbbbb"
font.pointSize: 12
Expand Down Expand Up @@ -253,7 +253,7 @@ Item {
}

Text {
text: useRadian ? 'Roll (rad)' : 'Roll (deg)'
text: 'Yaw ' + (useRadian ? '(rad)' : '(deg)')
leftPadding: 5
color: Material.theme == Material.Light ? "#444444" : "#bbbbbb"
font.pointSize: 12
Expand Down

0 comments on commit c3754d0

Please sign in to comment.