+ [GetNSTextField() setStringValue:wxNSStringWithWxString(GetLabelText(label))];
+ NSRect oldFrameRect = [GetNSTextField() frame];
+ NSView *superview = [GetNSTextField() superview];
+
+ if(!(GetWindowStyle() & wxST_NO_AUTORESIZE))
+ {
+ wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel Old Position: (%d,%d)"), GetPosition().x, GetPosition().y);
+ [GetNSTextField() sizeToFit];
+ NSRect newFrameRect = [GetNSTextField() frame];
+ // Ensure new size is an integer so GetSize returns valid data
+ newFrameRect.size.height = ceil(newFrameRect.size.height);
+ newFrameRect.size.width = ceil(newFrameRect.size.width);
+ if(![superview isFlipped])
+ {
+ newFrameRect.origin.y = oldFrameRect.origin.y + oldFrameRect.size.height - newFrameRect.size.height;
+ }
+ [GetNSTextField() setFrame:newFrameRect];
+ // New origin (wx coords) should always match old origin
+ wxLogTrace(wxTRACE_COCOA_Window_Size, wxT("wxStaticText::SetLabel New Position: (%d,%d)"), GetPosition().x, GetPosition().y);
+ [superview setNeedsDisplayInRect:newFrameRect];
+ }
+
+ [superview setNeedsDisplayInRect:oldFrameRect];