limits: Fix issue with square_corner_velocity possibly being a decimal

This commit is contained in:
Jordan 2021-09-18 10:09:58 -04:00
parent e9432ae308
commit 414ac3f211

View File

@ -74,7 +74,7 @@ class LimitsPanel(ScreenPanel):
if conf is False or option not in conf:
return
value = int(conf[option])
value = int(float(conf[option]))
name = Gtk.Label()
name.set_markup("<big><b>%s</b></big>" % (optname))