Commit 733d4d79 authored by Ilkka Ollakka's avatar Ilkka Ollakka

Seems that title-callback weren't called afterall for dvd, should work

better now, thanks for j-b for spotting.
parent 12bbc5d5
......@@ -224,6 +224,7 @@ void InputManager::customEvent( QEvent *event )
else if ( type == ItemChanged_Type )
{
UpdateMeta();
UpdateTitle();
}
else if ( type == ItemRateChanged_Type )
{
......@@ -255,6 +256,7 @@ void InputManager::UpdateTitle( void )
/* Update navigation status */
vlc_value_t val; val.i_int = 0;
var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
msg_Dbg( p_intf, "updateTitle called" );
if( val.i_int > 0 )
{
val.i_int = 0;
......
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