From: Derk-Jan Hartman Date: Thu, 6 Mar 2003 15:24:12 +0000 (+0000) Subject: * the close window command was reacting irratic because of my meddling X-Git-Tag: 0.5.2~23 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ff859e442420f68db1308971a98ac31433c51d7c;p=vlc * the close window command was reacting irratic because of my meddling with the responder chain. HANDS OFF you little devil ;) --- diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index 26f15a21b7..ecc14789b7 100644 --- a/modules/gui/macosx/playlist.m +++ b/modules/gui/macosx/playlist.m @@ -2,7 +2,7 @@ * playlist.m: MacOS X interface plugin ***************************************************************************** * Copyright (C) 2002-2003 VideoLAN - * $Id: playlist.m,v 1.13 2003/03/06 11:43:07 hartman Exp $ + * $Id: playlist.m,v 1.14 2003/03/06 15:24:12 hartman Exp $ * * Authors: Jon Lech Johansen * Derk-Jan Hartman @@ -324,19 +324,6 @@ [o_table_view selectRow: i_row byExtendingSelection: NO]; [o_table_view scrollRowToVisible: i_row]; - - vout_thread_t * p_vout = vlc_object_find( p_intf, VLC_OBJECT_VOUT, - FIND_ANYWHERE ); - - if( p_vout == NULL || !p_vout->b_fullscreen ) - { - [[NSApp keyWindow] makeFirstResponder: o_table_view]; - } - - if( p_vout != NULL ) - { - vlc_object_release( (vlc_object_t *)p_vout ); - } } @end