From bdd9b1ad478015df48d243aa045f01e4240afde5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 3 Apr 2005 23:54:12 +0000 Subject: [PATCH] Use MLTE by default for wxPython git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33317 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/helpers.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wxPython/src/helpers.cpp b/wxPython/src/helpers.cpp index b5ad3f8f6b..e7898642b9 100644 --- a/wxPython/src/helpers.cpp +++ b/wxPython/src/helpers.cpp @@ -439,6 +439,8 @@ void wxPyApp::_BootstrapApp() setlocale(LC_NUMERIC, "C"); #endif + wxSystemOptions::SetOptionInt(wxT("mac.textcontrol-use-mlte"), 1); + // The stock objects were all NULL when they were loaded into // SWIG generated proxies, so re-init those now... wxPy_ReinitStockObjects(3);