diff --git a/panels/move.py b/panels/move.py index 57e6f631..7cb7bb16 100644 --- a/panels/move.py +++ b/panels/move.py @@ -38,8 +38,8 @@ class MovePanel(ScreenPanel): self.labels['home'].connect("clicked", self.home) - grid.attach(self.labels['x+'], 0, 1, 1, 1) - grid.attach(self.labels['x-'], 2, 1, 1, 1) + grid.attach(self.labels['x+'], 2, 1, 1, 1) + grid.attach(self.labels['x-'], 0, 1, 1, 1) grid.attach(self.labels['y+'], 1, 0, 1, 1) grid.attach(self.labels['y-'], 1, 1, 1, 1) grid.attach(self.labels['z+'], 3, 0, 1, 1)