wxSize wxWindowMac::DoGetBestSize() const
{
- /*
+ if ( m_macIsUserPane || IsTopLevel() )
+ return wxWindowBase::DoGetBestSize() ;
+
Rect bestsize = { 0 , 0 , 0 , 0 } ;
short baselineoffset ;
int bestWidth, bestHeight ;
bestHeight = 13 ;
return wxSize(bestWidth, bestHeight);
- */
- return wxWindowBase::DoGetBestSize() ;
+// return wxWindowBase::DoGetBestSize() ;
}