From: daid Date: Mon, 27 Oct 2014 12:36:09 +0000 (+0100) Subject: Fix problems with german support selection. X-Git-Tag: lulzbot-14.12~54 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7b9f1a687fc633d3bb3545c0c3d692479b2de1a7;p=cura.git Fix problems with german support selection. --- diff --git a/Cura/gui/configBase.py b/Cura/gui/configBase.py index 0c211c84..7b3c0752 100644 --- a/Cura/gui/configBase.py +++ b/Cura/gui/configBase.py @@ -204,7 +204,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