mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-01-06 14:57:53 -07:00
toolhead: Fix incorrect response message in SET_VELOCITY_LIMIT
Some checks failed
Build test / build (push) Has been cancelled
Some checks failed
Build test / build (push) Has been cancelled
Commit f8da8099 incorrectly changed the order of variables in the
log/response message of the SET_VELOCITY_LIMIT command. Restore the
correct order.
Reported by @berkakinci.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
e4c66452dc
commit
20d9c84a9f
1 changed files with 1 additions and 1 deletions
|
|
@ -662,7 +662,7 @@ class ToolHeadCommandHelper:
|
|||
msg = ("max_velocity: %.6f\n"
|
||||
"max_accel: %.6f\n"
|
||||
"minimum_cruise_ratio: %.6f\n"
|
||||
"square_corner_velocity: %.6f" % (mv, ma, scv, mcr))
|
||||
"square_corner_velocity: %.6f" % (mv, ma, mcr, scv))
|
||||
self.printer.set_rollover_info("toolhead", "toolhead: %s" % (msg,))
|
||||
if (max_velocity is None and max_accel is None
|
||||
and square_corner_velocity is None and min_cruise_ratio is None):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue