git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58887
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
superimpl(slf, (SEL)_cmd);
}
else
superimpl(slf, (SEL)_cmd);
}
else
[slf addCursorRect: [slf bounds]
cursor: cursor];
[slf addCursorRect: [slf bounds]
cursor: cursor];
// adjust the coordinates
if (parent)
{
// adjust the coordinates
if (parent)
{
- wxPoint pt(parent->GetClientAreaOrigin());
- x -= pt.x;
- y -= pt.y;
+ int cx = 0,cy = 0,cw = 0,ch = 0;
+ if ( parent->GetPeer() )
+ {
+ parent->GetPeer()->GetContentArea(cx, cy, cw, ch);
+ x -= cx;
+ y -= cy;
+ }
}
NSRect r = wxToNSRect( [m_osxView superview], wxRect(x,y,width, height) );
[m_osxView setFrame:r];
}
NSRect r = wxToNSRect( [m_osxView superview], wxRect(x,y,width, height) );
[m_osxView setFrame:r];