Commit 99839e32 authored by Laurent Aimar's avatar Laurent Aimar

Fixed __intf_UserHide (close #1827)

parent ad14bac8
......@@ -343,7 +343,10 @@ void __intf_UserHide( vlc_object_t *p_this, int i_id )
p_dialog = DialogGetById( p_interaction, i_id );
if( p_dialog )
{
p_dialog->i_status = ANSWERED_DIALOG;
vlc_object_signal_unlocked( p_interaction );
}
vlc_object_unlock( p_interaction );
vlc_object_release( p_interaction );
......
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