From 4a080e62f19b3314657e0474b5317fd899fe34d2 Mon Sep 17 00:00:00 2001 From: Erwan Tulou Date: Sun, 20 Dec 2009 20:24:58 +0100 Subject: [PATCH] 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) --- src/video_output/video_output.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c index 0c09a45dd1..5004d42b5c 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 } /* */ -- 2.39.5