Commit 12514465 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: remove unneeded debug message

parent b02e4929
......@@ -424,11 +424,9 @@ void InputManager::UpdateNavigation()
if( val.i_int > 0 )
{
emit titleChanged( true );
msg_Dbg( p_intf, "Title %"PRId64, val.i_int );
/* p_input != NULL since val.i_int != 0 */
var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val2, NULL );
emit chapterChanged( (val2.i_int > 1) || ( val2.i_int > 0 && val.i_int > 1 ) );
msg_Dbg( p_intf, "Chapter: %"PRId64, val2.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