Skip to content

Commit

Permalink
mavproxy.py: increase precision of click show
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Jun 10, 2024
1 parent 0b296c0 commit e426099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/mavproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def cmd_click(args):
print(usage)
return
if args[0] == "show":
print("%f %f" % mpstate.click_location)
print("%.8f %.8f" % mpstate.click_location)
return
if len(args) < 2:
print(usage)
Expand Down

0 comments on commit e426099

Please sign in to comment.