[vlc-devel] commit: Fix previous commit about drag&drop. ( Rémi Duraffort )
git version control
git at videolan.org
Tue Jul 28 12:21:01 CEST 2009
vlc | branch: 1.0-bugfix | Rémi Duraffort <ivoire at videolan.org> | Thu Jul 23 14:21:28 2009 +0200| [d3f0d9adb1039acd33d936d6cb7d66c3b7753294] | committer: Rémi Duraffort
Fix previous commit about drag&drop.
(cherry picked from commit 4df6f9596f94eb43c20411e19974080dd5607479)
Signed-off-by: Rémi Duraffort <ivoire at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d3f0d9adb1039acd33d936d6cb7d66c3b7753294
---
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 7ee7570..31b990a 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