From 1c45b87f090934d22a330137cb65b40e3698d526 Mon Sep 17 00:00:00 2001 From: Alfredo Monclus Date: Sat, 26 Jun 2021 13:21:20 -0300 Subject: [PATCH] move: Add 50mm to move panel (#195) --- panels/move.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panels/move.py b/panels/move.py index 3693aec9..65b7c976 100644 --- a/panels/move.py +++ b/panels/move.py @@ -12,7 +12,7 @@ def create_panel(*args): class MovePanel(ScreenPanel): distance = 1 - distances = ['.1','.5','1','5','10','25'] + distances = ['.1','.5','1','5','10','25','50'] 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(distgrid, True, True, 0) - grid.attach(box, 0, 2, 3, 1) + grid.attach(box, 0, 2, 4, 1) self.content.add(grid) self._screen.add_subscription(panel_name)