Commit 5d16db8d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: more debug to find the Chapitre and Titre in Qt4

parent 35a84e28
......@@ -384,10 +384,12 @@ void InputManager::UpdateNavigation()
if( val.i_int > 0 )
{
emit titleChanged( true );
msg_Dbg( p_intf, "Title %i", val.i_int );
/* p_input != NULL since val.i_int != 0 */
val.i_int = 0;
var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL );
emit chapterChanged( (val.i_int > 0) );
msg_Dbg( p_intf, "Chapter: %i", val.i_int );
}
else
emit titleChanged( false );
......
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