[MPlayer-cvslog] r19992 - trunk/Gui/wm/wsxdnd.c

diego subversion at mplayerhq.hu
Wed Sep 27 13:24:28 CEST 2006


Author: diego
Date: Wed Sep 27 13:24:28 2006
New Revision: 19992

Modified:
   trunk/Gui/wm/wsxdnd.c

Log:
Fix longstanding drag and drop bug: Only n-1 files get played when n files
get queued via drag and drop.
patch by laurent wozniak, laurent.wozniak at laposte dot net


Modified: trunk/Gui/wm/wsxdnd.c
==============================================================================
--- trunk/Gui/wm/wsxdnd.c	(original)
+++ trunk/Gui/wm/wsxdnd.c	Wed Sep 27 13:24:28 2006
@@ -124,7 +124,7 @@
 	
       /* Handle the files */
       if(wnd->DandDHandler){
-	wnd->DandDHandler(num-1,files);
+	wnd->DandDHandler(num,files);
       }
     }
 



More information about the MPlayer-cvslog mailing list