limits: Fix issue with square_corner_velocity possibly being a decimal
This commit is contained in:
parent
e9432ae308
commit
414ac3f211
@ -74,7 +74,7 @@ class LimitsPanel(ScreenPanel):
|
|||||||
if conf is False or option not in conf:
|
if conf is False or option not in conf:
|
||||||
return
|
return
|
||||||
|
|
||||||
value = int(conf[option])
|
value = int(float(conf[option]))
|
||||||
|
|
||||||
name = Gtk.Label()
|
name = Gtk.Label()
|
||||||
name.set_markup("<big><b>%s</b></big>" % (optname))
|
name.set_markup("<big><b>%s</b></big>" % (optname))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user