]> git.sesse.net Git - vlc/commitdiff
* Should fix an issue with multiple monitors and the hiding of the mousecursor
authorDerk-Jan Hartman <hartman@videolan.org>
Fri, 14 Feb 2003 23:07:41 +0000 (23:07 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Fri, 14 Feb 2003 23:07:41 +0000 (23:07 +0000)
modules/gui/macosx/vout.m

index 0ef4c6db30194de8f780fefe248d0a334dd5e0be..e7d0dccf359899847af254df64e9d54101e91641 100644 (file)
@@ -2,7 +2,7 @@
  * vout.m: MacOS X video output plugin
  *****************************************************************************
  * Copyright (C) 2001-2003 VideoLAN
- * $Id: vout.m,v 1.32 2003/02/13 02:00:56 hartman Exp $
+ * $Id: vout.m,v 1.33 2003/02/14 23:07:41 hartman Exp $
  *
  * Authors: Colin Delacroix <colin@zoy.org>
  *          Florian G. Pflug <fgp@phlo.org>
@@ -944,10 +944,9 @@ static void QTFreePicture( vout_thread_t *p_vout, picture_t *p_pic )
             
         val.b_bool = VLC_TRUE;
         var_Set( p_vout, "mouse-moved", val );
-        
-        p_vout->p_sys->i_time_mouse_last_moved = mdate();
-        p_vout->p_sys->b_mouse_moved = 1;
     }
+    p_vout->p_sys->i_time_mouse_last_moved = mdate();
+    p_vout->p_sys->b_mouse_moved = 1;
     [super mouseMoved: o_event];
 }