Commit 136d8730 authored by Clément Stenac's avatar Clément Stenac

Don't preparse folders using input_Preprase

parent f11cfb7f
...@@ -461,8 +461,7 @@ void DialogsProvider::OnOpenDirectory( wxCommandEvent& event ) ...@@ -461,8 +461,7 @@ void DialogsProvider::OnOpenDirectory( wxCommandEvent& event )
wxString path = p_dir_dialog->GetPath(); wxString path = p_dir_dialog->GetPath();
char *psz_utf8 = wxFromLocale( path ); char *psz_utf8 = wxFromLocale( path );
playlist_Add( p_playlist, psz_utf8, psz_utf8, playlist_Add( p_playlist, psz_utf8, psz_utf8,
PLAYLIST_APPEND | (event.GetInt() ? PLAYLIST_GO : 0) | PLAYLIST_APPEND | (event.GetInt() ? PLAYLIST_GO : 0),
(event.GetInt() ? 0 : PLAYLIST_PREPARSE ),
PLAYLIST_END ); PLAYLIST_END );
wxLocaleFree( psz_utf8 ); wxLocaleFree( psz_utf8 );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment