move: Add 50mm to move panel ()

This commit is contained in:
Alfredo Monclus 2021-06-26 13:21:20 -03:00 committed by GitHub
parent ede73619ea
commit 1c45b87f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,7 +12,7 @@ def create_panel(*args):
class MovePanel(ScreenPanel): class MovePanel(ScreenPanel):
distance = 1 distance = 1
distances = ['.1','.5','1','5','10','25'] distances = ['.1','.5','1','5','10','25','50']
def initialize(self, panel_name): def initialize(self, panel_name):
@ -90,7 +90,7 @@ class MovePanel(ScreenPanel):
box.pack_start(self.labels['move_dist'], True, True, 0) box.pack_start(self.labels['move_dist'], True, True, 0)
box.pack_start(distgrid, True, True, 0) box.pack_start(distgrid, True, True, 0)
grid.attach(box, 0, 2, 3, 1) grid.attach(box, 0, 2, 4, 1)
self.content.add(grid) self.content.add(grid)
self._screen.add_subscription(panel_name) self._screen.add_subscription(panel_name)