]> git.sesse.net Git - vlc/commitdiff
Attempt to fix the video output with QuickTime 6.
authorChristophe Massiot <massiot@videolan.org>
Wed, 15 May 2002 21:14:18 +0000 (21:14 +0000)
committerChristophe Massiot <massiot@videolan.org>
Wed, 15 May 2002 21:14:18 +0000 (21:14 +0000)
plugins/macosx/vout_qdview.m

index 2986ddf8c8f0b096ac734faeeb0ef96a024d8927..43362ce974495b37cf4a9b86bbb4df17a698dc73 100644 (file)
@@ -2,7 +2,7 @@
  * vout_qdview.c: MacOS X plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: vout_qdview.m,v 1.1 2002/05/12 20:56:34 massiot Exp $
+ * $Id: vout_qdview.m,v 1.2 2002/05/15 21:14:18 massiot Exp $
  *
  * Authors: Florian G. Pflug <fgp@phlo.org>
  *          Jon Lech Johansen <jon-vl@nanocrew.net>
@@ -47,9 +47,9 @@
 
 - (void)drawRect:(NSRect)rect
 {
-    [super drawRect: rect];
     [[NSColor blackColor] set];
     NSRectFill(rect);
+    [super drawRect: rect];
 }
 
 @end