[bugfix] channel order mixed

This commit is contained in:
Marcel Paffrath 2017-06-06 14:43:36 +02:00
parent 9007197786
commit bdc85fa56a
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
4077e-dirty
9007-dirty

View File

@ -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)