From: Robin Dunn Date: Wed, 8 Mar 2006 03:06:25 +0000 (+0000) Subject: workaround MacSetMetalAppearance being made protected X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f355f03e6387e494e6aa2a55c119a938e3a90837 workaround MacSetMetalAppearance being made protected git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37900 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_toplvl.i b/wxPython/src/_toplvl.i index ceeaf5b111..f12c268f7b 100644 --- a/wxPython/src/_toplvl.i +++ b/wxPython/src/_toplvl.i @@ -134,7 +134,16 @@ public: virtual bool IsActive(); #ifdef __WXMAC__ - void MacSetMetalAppearance( bool on ); + %extend { + void MacSetMetalAppearance( bool on ) { + int style = self->GetExtraStyle(); + if ( on ) + style |= wxFRAME_EX_METAL; + else + style &= ~wxFRAME_EX_METAL; + self->SetExtraStyle(style); + } + } bool MacGetMetalAppearance() const; #else %extend