[vlc-devel] commit: Fix previous commit about drag&drop. ( Rémi Duraffort )
git version control
git at videolan.org
Thu Jul 23 14:41:50 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Thu Jul 23 14:21:28 2009 +0200| [4df6f9596f94eb43c20411e19974080dd5607479] | committer: Rémi Duraffort
Fix previous commit about drag&drop.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4df6f9596f94eb43c20411e19974080dd5607479
---
modules/gui/qt4/main_interface.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index 7a8ea0f..2288ac9 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -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 );
}
More information about the vlc-devel
mailing list