From: RĂ©mi Duraffort Date: Tue, 15 Jul 2008 18:22:42 +0000 (+0200) Subject: Ask the playlist to lock itself as it isn't done before. X-Git-Tag: 0.9.0-test3~432 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=1b281d5b447b67b3d6493efe8d0d8136b0db400b;p=vlc Ask the playlist to lock itself as it isn't done before. --- diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c index 4d8d03fce4..dd9b9b204f 100644 --- a/modules/gui/ncurses.c +++ b/modules/gui/ncurses.c @@ -711,7 +711,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) while( p_parent->p_parent ) p_parent = p_parent->p_parent; playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, - true, p_parent, p_item ); + false, p_parent, p_item ); } else if( p_sys->pp_plist[p_sys->i_box_plidx]->p_item->i_children == 0 ) @@ -722,7 +722,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key ) else { p_sys->p_node = p_sys->pp_plist[p_sys->i_box_plidx]->p_item; - playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, true, + playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, false, p_sys->pp_plist[p_sys->i_box_plidx]->p_item, NULL ); } b_box_plidx_follow = true;