From 90a71f34bc448d1396d2e27f4177885897199152 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 2 Jan 2018 10:24:37 +0100 Subject: [PATCH] fix utf-8 decoding issue in Draft --- src/Mod/Draft/DraftGui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/DraftGui.py b/src/Mod/Draft/DraftGui.py index 2145671e56..b5efa59688 100644 --- a/src/Mod/Draft/DraftGui.py +++ b/src/Mod/Draft/DraftGui.py @@ -49,7 +49,7 @@ except ImportError: try: _encoding = QtGui.QApplication.UnicodeUTF8 - def translate(context, text, utf8_decode=False): + def translate(context, text, utf8_decode=True): """convenience function for Qt translator context: str context is typically a class name (e.g., "MyDialog")