[vlc-devel] commit: Ask the playlist to lock itself as it isn't done before. ( Rémi Duraffort )
git version control
git at videolan.org
Tue Jul 15 20:20:52 CEST 2008
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Jul 15 20:22:42 2008 +0200| [1b281d5b447b67b3d6493efe8d0d8136b0db400b]
Ask the playlist to lock itself as it isn't done before.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1b281d5b447b67b3d6493efe8d0d8136b0db400b
---
modules/gui/ncurses.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/ncurses.c b/modules/gui/ncurses.c
index 4d8d03f..dd9b9b2 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;
More information about the vlc-devel
mailing list