From 84091c6692d4e22e6082ecf692c4df6e9e292b2f Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Fri, 25 Jul 2008 21:38:06 -0700 Subject: [PATCH] Fix #1761: open directory plays. This needs double-check. --- modules/gui/qt4/dialogs_provider.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp index 98d11ab919..758ebec6ad 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() -- 2.39.2