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


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19992 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-09-27 11:24:28 +00:00
parent 42005ac82b
commit bc633a5c4c
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ wsXDNDProcessSelection(wsTWindow* wnd, XEvent *event)
/* Handle the files */
if(wnd->DandDHandler){
wnd->DandDHandler(num-1,files);
wnd->DandDHandler(num,files);
}
}