mirror of https://github.com/mpv-player/mpv
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:
parent
42005ac82b
commit
bc633a5c4c
|
@ -124,7 +124,7 @@ wsXDNDProcessSelection(wsTWindow* wnd, XEvent *event)
|
|||
|
||||
/* Handle the files */
|
||||
if(wnd->DandDHandler){
|
||||
wnd->DandDHandler(num-1,files);
|
||||
wnd->DandDHandler(num,files);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue