]> git.sesse.net Git - vlc/commitdiff
* the close window command was reacting irratic because of my meddling
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 6 Mar 2003 15:24:12 +0000 (15:24 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 6 Mar 2003 15:24:12 +0000 (15:24 +0000)
  with the responder chain. HANDS OFF you little devil ;)

modules/gui/macosx/playlist.m

index 26f15a21b737d4dc7cd44feb239c455d992d1c20..ecc14789b70fbaa694aede3cbaccd07fe38b4909 100644 (file)
@@ -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 <jon-vl@nanocrew.net>
  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
 
     [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