From 5e5743bab69ed06f85a09c121e6034dfb7099a54 Mon Sep 17 00:00:00 2001 From: Justin Nesselrotte Date: Thu, 1 Jan 2015 23:52:49 -0600 Subject: [PATCH] Fixes #76: Removing offset and print statement --- Cura/gui/util/openglGui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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): -- 2.30.2