]> git.saurik.com Git - wxWidgets.git/commitdiff
Force size to integer coordinates in all cases.
authorDavid Elliott <dfe@tgwbd.org>
Mon, 23 May 2005 06:03:51 +0000 (06:03 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Mon, 23 May 2005 06:03:51 +0000 (06:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34283 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/stattext.mm

index d77446dcc27727561a11c496a711fbf90f14cfbe..f0fbc1f05935bebfb578afea5251f0f795e6e2af 100644 (file)
@@ -74,11 +74,15 @@ void wxStaticText::SetLabel(const wxString& label)
     wxLogTrace(wxTRACE_COCOA_Window_Size, "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];
     }
+    [GetNSTextField() setFrame:newFrameRect];
+    // New origin (wx coords) should always match old origin
     wxLogTrace(wxTRACE_COCOA_Window_Size, "wxStaticText::SetLabel New Position: (%d,%d)", GetPosition().x, GetPosition().y);
 
     [[GetNSTextField() superview] setNeedsDisplayInRect:oldFrameRect];