chiark / gitweb /
Fix problems with german support selection.
authordaid <daid303@gmail.com>
Mon, 27 Oct 2014 12:36:09 +0000 (13:36 +0100)
committerdaid <daid303@gmail.com>
Mon, 27 Oct 2014 12:36:09 +0000 (13:36 +0100)
Cura/gui/configBase.py

index 5d787ffed588d7e36fc7b7911474beb6e9c708ae..b0c03a4b7f5da53e63e30d13dd220f39d93d8d1e 100644 (file)
@@ -243,7 +243,7 @@ class SettingRow(object):
                if isinstance(self.ctrl, wx.ColourPickerCtrl):
                        return str(self.ctrl.GetColour().GetAsString(wx.C2S_HTML_SYNTAX))
                elif isinstance(self.ctrl, wx.ComboBox):
-                       value = str(self.ctrl.GetValue())
+                       value = unicode(self.ctrl.GetValue())
                        for ret in self._englishChoices:
                                if _(ret) == value:
                                        return ret