]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/_intl_ex.py
Move setting of mac.listctrl.always_use_generic to wx.PyApp.__init__
[wxWidgets.git] / wxPython / src / _intl_ex.py
... / ...
CommitLineData
1#----------------------------------------------------------------------------
2# On MSW add the directory where the wxWidgets catalogs were installed
3# to the default catalog path.
4if wx.Platform == "__WXMSW__":
5 import os
6 _localedir = os.path.join(os.path.split(__file__)[0], "locale")
7 Locale.AddCatalogLookupPathPrefix(_localedir)
8 del os
9
10#----------------------------------------------------------------------------