Commit 69518c73 authored by Ilkka Ollakka's avatar Ilkka Ollakka

add back check to see if infopanel is opened for something else than

current item.
parent 1ff18323
...@@ -143,7 +143,7 @@ void MediaInfoDialog::setInput( input_item_t *p_input ) ...@@ -143,7 +143,7 @@ void MediaInfoDialog::setInput( input_item_t *p_input )
*/ */
input_thread_t *p_current = input_thread_t *p_current =
MainInputManager::getInstance( p_intf )->getInput(); MainInputManager::getInstance( p_intf )->getInput();
MP->setEditMode( ( !p_current || p_current->b_dead ) ? MP->setEditMode( ( !p_current || p_current->b_dead || input_GetItem( p_current ) != p_input ) ?
true: false ); true: 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