diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c index 0c09a45dd1ef0a5a0157fe890df83171a4d129d5..5004d42b5c5082162c43108bc85ecc9528207152 100644 --- a/src/video_output/video_output.c +++ b/src/video_output/video_output.c @@ -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 } /* */