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