Add InitLocale method

This commit is contained in:
Robin Dunn
2021-10-26 12:35:04 -07:00
parent b42e0c160f
commit 1eef4d9390

View File

@@ -2709,6 +2709,9 @@ class MyApp(wx.App, wx.lib.mixins.inspection.InspectionMixin):
return True
def InitLocale(self):
super().InitLocale()
self._locale = wx.Locale(wx.LANGUAGE_ENGLISH)
#---------------------------------------------------------------------------