]> git.sesse.net Git - vlc/commitdiff
Fix previous commit about drag&drop.
authorRémi Duraffort <ivoire@videolan.org>
Thu, 23 Jul 2009 12:21:28 +0000 (14:21 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Thu, 23 Jul 2009 12:21:28 +0000 (14:21 +0200)
modules/gui/qt4/main_interface.cpp

index 7a8ea0f75ad5fa8808fc86820a72caf98823a6ff..2288ac9cb1403227ad80a84076d90bf8cb8b6a37 100644 (file)
@@ -1134,8 +1134,8 @@ void MainInterface::dropEventPlay( QDropEvent *event, bool b_play )
 
         if( s.length() > 0 ) {
             playlist_Add( THEPL, qtu(s), NULL,
-                          PLAYLIST_APPEND | PLAYLIST_PREPARSE | (first ? PLAYLIST_GO: 0),
-                          PLAYLIST_END, true, false );
+                          PLAYLIST_APPEND | (first ? PLAYLIST_GO: PLAYLIST_PREPARSE),
+                          PLAYLIST_END, true, pl_Unlocked );
             first = false;
             RecentsMRL::getInstance( p_intf )->addRecent( s );
         }