Mercurial > mplayer.hg
changeset 15747:fbf14e1ab725
osx 10.3 dont like to have a window init with no size
author | nplourde |
---|---|
date | Fri, 17 Jun 2005 16:45:24 +0000 |
parents | 1e338a247650 |
children | f75ba7f7b7b2 |
files | libvo/vo_macosx.m |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_macosx.m Fri Jun 17 15:09:46 2005 +0000 +++ b/libvo/vo_macosx.m Fri Jun 17 16:45:24 2005 +0000 @@ -277,7 +277,7 @@ [self initMenu]; //create window - window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 0, 0) + window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, 100, 100) styleMask:NSTitledWindowMask|NSTexturedBackgroundWindowMask|NSClosableWindowMask|NSMiniaturizableWindowMask|NSResizableWindowMask backing:NSBackingStoreBuffered defer:NO];