From 0a3babd51e3755a8bfa4a5455144bca4a4b7be87 Mon Sep 17 00:00:00 2001 From: vacapetr <73720287+vacapetr@users.noreply.github.com> Date: Sat, 14 Nov 2020 09:41:34 +0100 Subject: [PATCH] Update move.py --- panels/move.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)