[vlc-devel] commit: Qt : Add PLAYLIST_PREPARSE flag to drag&dropped items ( Besnard Jean-Baptiste )
git version control
git at videolan.org
Tue Jul 28 12:21:01 CEST 2009
vlc | branch: 1.0-bugfix | Besnard Jean-Baptiste <jbbesnard at actech-innovation.com> | Thu Jul 23 10:59:17 2009 +0200| [887c772e8071fdcec62707349e85f66e30964acf] | committer: Rémi Duraffort
Qt : Add PLAYLIST_PREPARSE flag to drag&dropped items
Signed-off-by: Rémi Duraffort <ivoire at videolan.org>
(cherry picked from commit f9b30861f4dbdadb0339480976dc4850f9e94f42)
Signed-off-by: Rémi Duraffort <ivoire at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=887c772e8071fdcec62707349e85f66e30964acf
---
modules/gui/qt4/main_interface.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index 97aca1a..7ee7570 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -1134,7 +1134,7 @@ void MainInterface::dropEventPlay( QDropEvent *event, bool b_play )
if( s.length() > 0 ) {
playlist_Add( THEPL, qtu(s), NULL,
- PLAYLIST_APPEND | (first ? PLAYLIST_GO: 0),
+ PLAYLIST_APPEND | PLAYLIST_PREPARSE | (first ? PLAYLIST_GO: 0),
PLAYLIST_END, true, false );
first = false;
RecentsMRL::getInstance( p_intf )->addRecent( s );
More information about the vlc-devel
mailing list