Commit 55287bbf authored by Rafaël Carré's avatar Rafaël Carré

ncurses: yield() the playlist only once

parent fa479cd8
...@@ -339,6 +339,7 @@ static void Close( vlc_object_t *p_this ) ...@@ -339,6 +339,7 @@ static void Close( vlc_object_t *p_this )
static void Run( intf_thread_t *p_intf ) static void Run( intf_thread_t *p_intf )
{ {
intf_sys_t *p_sys = p_intf->p_sys; intf_sys_t *p_sys = p_intf->p_sys;
playlist_t *p_playlist = pl_Yield( p_intf );
int i_key; int i_key;
time_t t_last_refresh; time_t t_last_refresh;
...@@ -353,7 +354,6 @@ static void Run( intf_thread_t *p_intf ) ...@@ -353,7 +354,6 @@ static void Run( intf_thread_t *p_intf )
msleep( INTF_IDLE_SLEEP ); msleep( INTF_IDLE_SLEEP );
/* Update the input */ /* Update the input */
playlist_t *p_playlist = pl_Yield( p_intf );
var_AddCallback( p_playlist, "intf-change", PlaylistChanged, p_intf ); var_AddCallback( p_playlist, "intf-change", PlaylistChanged, p_intf );
var_AddCallback( p_playlist, "item-append", PlaylistChanged, p_intf ); var_AddCallback( p_playlist, "item-append", PlaylistChanged, p_intf );
......
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