winemac: Don't set Cocoa window frame to be zero-sized.

This commit is contained in:
Ken Thomases 2013-02-17 19:28:19 -06:00 committed by Alexandre Julliard
parent 47352930d8
commit d74e90080a
1 changed files with 10 additions and 7 deletions

View File

@ -429,6 +429,8 @@ - (BOOL) setFrameIfOnScreen:(NSRect)contentRect
[self doOrderOut];
}
if (!NSIsEmptyRect(contentRect))
{
oldFrame = [self frame];
frame = [self frameRectForContentRect:contentRect];
if (!NSEqualRects(frame, oldFrame))
@ -438,6 +440,7 @@ - (BOOL) setFrameIfOnScreen:(NSRect)contentRect
else
[self setFrame:frame display:YES];
}
}
if (on_screen)
{