changeset 19986:6d2433bc7600

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
author diego
date Wed, 27 Sep 2006 11:24:28 +0000
parents f7105042bbde
children f00912e9480b
files Gui/wm/wsxdnd.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Gui/wm/wsxdnd.c	Wed Sep 27 10:14:03 2006 +0000
+++ b/Gui/wm/wsxdnd.c	Wed Sep 27 11:24:28 2006 +0000
@@ -124,7 +124,7 @@
 	
       /* Handle the files */
       if(wnd->DandDHandler){
-	wnd->DandDHandler(num-1,files);
+	wnd->DandDHandler(num,files);
       }
     }