[MPlayer-cvslog] CVS: main/libvo vo_macosx.m,1.21,1.22

Nicolas Plourde CVS syncmail at mplayerhq.hu
Fri Jun 17 18:45:27 CEST 2005


CVS change done by Nicolas Plourde CVS

Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv5118/libvo

Modified Files:
	vo_macosx.m 
Log Message:
osx 10.3 dont like to have a window init with no size

Index: vo_macosx.m
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_macosx.m,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- vo_macosx.m	16 Jun 2005 16:41:44 -0000	1.21
+++ vo_macosx.m	17 Jun 2005 16:45:24 -0000	1.22
@@ -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];
 




More information about the MPlayer-cvslog mailing list