From 7b9f1a687fc633d3bb3545c0c3d692479b2de1a7 Mon Sep 17 00:00:00 2001 From: daid Date: Mon, 27 Oct 2014 13:36:09 +0100 Subject: [PATCH] Fix problems with german support selection. --- Cura/gui/configBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2