From: Kevin Ollivier Date: Fri, 27 Oct 2006 20:22:09 +0000 (+0000) Subject: Don't use the superview when converting. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/959d17852d9019117a4361823ee6534d25eb3fd3 Don't use the superview when converting. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42542 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmlctrl/webkit/webkit.mm b/src/html/htmlctrl/webkit/webkit.mm index 160a02c780..27a99e79bc 100755 --- a/src/html/htmlctrl/webkit/webkit.mm +++ b/src/html/htmlctrl/webkit/webkit.mm @@ -544,7 +544,7 @@ void wxWebKitCtrl::OnSize(wxSizeEvent &event){ // and this tripped me up at first. But in fact, what we want is the root view, because we need to // make the y origin relative to the very top of the window, not its contents, since we later flip // the y coordinate for Cocoa. - HIViewConvertRect (&rect, HIViewGetSuperview( m_peer->GetControlRef() ), + HIViewConvertRect (&rect, m_peer->GetControlRef(), HIViewGetRoot( (WindowRef) MacGetTopLevelWindowRef() ) ); x = (int)rect.origin.x;