X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4a065572bf8288c5964f0319ef958b3423b49a4a..9ac884500ce30c58e24b0a6af1288b576d2e03e4:/wxPython/src/_settings.i diff --git a/wxPython/src/_settings.i b/wxPython/src/_settings.i index 952189fb32..f45d1fe3b9 100644 --- a/wxPython/src/_settings.i +++ b/wxPython/src/_settings.i @@ -129,7 +129,8 @@ enum wxSystemMetric enum wxSystemFeature { wxSYS_CAN_DRAW_FRAME_DECORATIONS = 1, - wxSYS_CAN_ICONIZE_FRAME + wxSYS_CAN_ICONIZE_FRAME, + wxSYS_TABLET_PRESENT }; @@ -199,8 +200,15 @@ public: static wxString GetOption(const wxString& name) ; static int GetOptionInt(const wxString& name) ; static bool HasOption(const wxString& name) ; + static bool IsFalse(const wxString& name); }; +%pythoncode { + %# Until the new native control for wxMac is up to par, still use the generic one. + SystemOptions.SetOptionInt("mac.listctrl.always_use_generic", 1) +} + + //---------------------------------------------------------------------------