[vlc-devel] commit: Fix #1761: open directory plays. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Sat Jul 26 08:09:25 CEST 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Jul 25 21:38:06 2008 -0700| [84091c6692d4e22e6082ecf692c4df6e9e292b2f]
Fix #1761: open directory plays.
This needs double-check.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=84091c6692d4e22e6082ecf692c4df6e9e292b2f
---
modules/gui/qt4/dialogs_provider.cpp | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp
index 98d11ab..758ebec 100644
--- a/modules/gui/qt4/dialogs_provider.cpp
+++ b/modules/gui/qt4/dialogs_provider.cpp
@@ -356,14 +356,15 @@ static void openDirectory( intf_thread_t *p_intf, bool pl, bool go )
playlist_AddInput( THEPL, p_input,
go ? ( PLAYLIST_APPEND | PLAYLIST_GO ) : PLAYLIST_APPEND,
PLAYLIST_END, pl, pl_Unlocked );
- input_Read( THEPL, p_input, false );
+ /* Why this ?
+ * input_Read( THEPL, p_input, false ); */
vlc_gc_decref( p_input );
}
}
void DialogsProvider::PLAppendDir()
{
- openDirectory( p_intf, true, false );
+ openDirectory( p_intf, true, true );
}
void DialogsProvider::MLAppendDir()
More information about the vlc-devel
mailing list