Commit 4a080e62 authored by Erwan Tulou's avatar Erwan Tulou

vlc core: remove a hack that seems no longer needed

On the other hand, it allows intf-show to really perform its goal
(react on user interaction via hotkey or mouse)
parent 8803ce9d
......@@ -589,21 +589,6 @@ static void vout_Destructor( vlc_object_t * p_this )
free( p_vout->p );
#ifndef __APPLE__
vout_thread_t *p_another_vout;
/* This is a dirty hack mostly for Linux, where there is no way to get the
* GUI back if you closed it while playing video. This is solved in
* Mac OS X, where we have this novelty called menubar, that will always
* allow you access to the applications main functionality. They should try
* that on linux sometime. */
p_another_vout = vlc_object_find( p_this->p_libvlc,
VLC_OBJECT_VOUT, FIND_ANYWHERE );
if( p_another_vout == NULL )
var_SetBool( p_this->p_libvlc, "intf-show", true );
else
vlc_object_release( p_another_vout );
#endif
}
/* */
......
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