From bdc85fa56a0c62fc86442927a926db8f5cbc8900 Mon Sep 17 00:00:00 2001 From: Marcel Paffrath Date: Tue, 6 Jun 2017 14:43:36 +0200 Subject: [PATCH] [bugfix] channel order mixed --- pylot/RELEASE-VERSION | 2 +- pylot/core/util/widgets.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pylot/RELEASE-VERSION b/pylot/RELEASE-VERSION index 06fb82a8..5323a0b2 100644 --- a/pylot/RELEASE-VERSION +++ b/pylot/RELEASE-VERSION @@ -1 +1 @@ -4077e-dirty +9007-dirty diff --git a/pylot/core/util/widgets.py b/pylot/core/util/widgets.py index 5d27d981..da74c408 100644 --- a/pylot/core/util/widgets.py +++ b/pylot/core/util/widgets.py @@ -2292,11 +2292,11 @@ class ChannelOrderTab(PropTab): self.ChannelOrderEEdit.setFixedSize(20, 20) # get channel order settings zcomp = compclass.getCompPosition('Z') - ecomp = compclass.getCompPosition('E') ncomp = compclass.getCompPosition('N') + ecomp = compclass.getCompPosition('E') self.ChannelOrderZEdit.setText("%s" % zcomp) - self.ChannelOrderNEdit.setText("%s" % ecomp) - self.ChannelOrderEEdit.setText("%s" % ncomp) + self.ChannelOrderNEdit.setText("%s" % ncomp) + self.ChannelOrderEEdit.setText("%s" % ecomp) layout = QGridLayout() layout.addWidget(ChannelOrderLabelZ, 0, 0)