if(m_frameStatusBar)
{
[m_frameStatusBar->GetNSViewForSuperview() removeFromSuperview];
- [m_frameStatusBar->GetNSViewForSuperview() setAutoresizingMask: NSViewNotSizable];
+ [m_frameStatusBar->GetNSViewForSuperview() setAutoresizingMask: NSViewMinYMargin];
if(m_frameStatusBar->GetParent())
m_frameStatusBar->GetParent()->CocoaAddChild(m_frameToolBar);
}
if(m_frameToolBar)
{
[m_frameToolBar->GetNSViewForSuperview() removeFromSuperview];
- [m_frameToolBar->GetNSViewForSuperview() setAutoresizingMask: NSViewNotSizable];
+ [m_frameToolBar->GetNSViewForSuperview() setAutoresizingMask: NSViewMinYMargin];
if(m_frameToolBar->GetParent())
m_frameToolBar->GetParent()->CocoaAddChild(m_frameToolBar);
}
frameRect.origin.x = pos.x;
frameRect.origin.y = parentRect.size.height-(pos.y+frameRect.size.height);
[nsview setFrame: frameRect];
+ // Tell Cocoa to change the margin between the bottom of the superview
+ // and the bottom of the control. Keeps the control pinned to the top
+ // of its superview so that its position in the wxWindows coordinate
+ // system doesn't change.
+ if(![superview isFlipped])
+ [nsview setAutoresizingMask: NSViewMinYMargin];
}
// Get total size