From 733d4d79a732f5fa49d692d80eda90e05dd807e9 Mon Sep 17 00:00:00 2001 From: Ilkka Ollakka Date: Tue, 22 Jan 2008 06:56:52 +0000 Subject: [PATCH] Seems that title-callback weren't called afterall for dvd, should work better now, thanks for j-b for spotting. --- modules/gui/qt4/input_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp index eeec9f6fac..a4f844cfd3 100644 --- a/modules/gui/qt4/input_manager.cpp +++ b/modules/gui/qt4/input_manager.cpp @@ -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; -- 2.39.2