From ea07bbf4f9eb7cf2a2752944618974a6aa57ebc3 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Fri, 24 Apr 2020 11:37:27 +0300 Subject: [PATCH] Try resetting locale on wx 4.0.6 as an attempt to work around #2174 --- pyfa.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfa.py b/pyfa.py index fbee4220b9..fbc9bde1db 100755 --- a/pyfa.py +++ b/pyfa.py @@ -140,6 +140,7 @@ def _process_args(self, largs, rargs, values): options.title = "pyfa %s - Python Fitting Assistant" % (config.getVersion()) pyfa = wx.App(False) + pyfa.ResetLocale() mf = MainFrame(options.title) ErrorHandler.SetParent(mf)