enabled the menu-entry to show file info when there is an input

parent c2aa6f8e
...@@ -289,6 +289,13 @@ void KInterface::slotManage() ...@@ -289,6 +289,13 @@ void KInterface::slotManage()
{ {
p_intf->p_sys->p_input = (input_thread_t *) p_intf->p_sys->p_input = (input_thread_t *)
vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE ); vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE );
if ( p_intf->p_sys->p_input )
{
languages->setEnabled( true );
subtitles->setEnabled( true );
info->setEnabled( true );
}
} }
else if( p_intf->p_sys->p_input->b_dead ) else if( p_intf->p_sys->p_input->b_dead )
{ {
......
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