From 7b904fec7995302e3c2a79712eab19189434f9cd Mon Sep 17 00:00:00 2001 From: Bertrand Lemasle Date: Thu, 23 Sep 2021 00:10:03 +0200 Subject: [PATCH] Fixed typo in limits,py (#283) --- panels/limits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/limits.py b/panels/limits.py index f5bc444e..000556da 100644 --- a/panels/limits.py +++ b/panels/limits.py @@ -37,7 +37,7 @@ class LimitsPanel(ScreenPanel): "value": self.stn(conf['max_accel'])}, {"name": _("Max Acceleration to Deceleration"), "units": _("mm/s^2"), "option": "max_accel_to_decel", "value": self.stn(conf['max_accel_to_decel']) if "max_accel_to_decel" in conf else - rount(self.stn(conf['max_accel'])/2)}, + round(self.stn(conf['max_accel'])/2)}, {"name": _("Max Velocity"), "units": _("mm/s"), "option": "max_velocity", "value": self.stn(conf["max_velocity"])}, {"name": _("Square Corner Velocity"), "units": _("mm/s"), "option": "square_corner_velocity",