From: Justin Nesselrotte Date: Fri, 2 Jan 2015 05:52:49 +0000 (-0600) Subject: Fixes #76: Removing offset and print statement X-Git-Tag: 14.09-1.18~5^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5e5743bab69ed06f85a09c121e6034dfb7099a54;p=cura.git Fixes #76: Removing offset and print statement --- diff --git a/Cura/gui/util/openglGui.py b/Cura/gui/util/openglGui.py index 5669249c..2ac098fa 100644 --- a/Cura/gui/util/openglGui.py +++ b/Cura/gui/util/openglGui.py @@ -634,8 +634,7 @@ class glComboButton(glButton): def setValue(self, value): self._selection = value - self._imageID = self._imageIDs[self._selection+1] - print self._imageID + self._imageID = self._imageIDs[self._selection] self._comboCallback() def OnMouseDown(self, x, y, button):