Commit 32dc8391 authored by Benjamin Pracht's avatar Benjamin Pracht

* There is no reason not to allow to open the information panel on nodes

* We now have an (ugly) way to rename nodes
parent 268f255b
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
if( self != nil ) if( self != nil )
{ {
p_item = NULL; p_item = NULL;
o_statUpdateTimer = nil;
} }
return( self ); return( self );
} }
...@@ -158,7 +159,6 @@ ...@@ -158,7 +159,6 @@
/* check whether our item is valid, because we would crash if not */ /* check whether our item is valid, because we would crash if not */
if(! [self isItemInPlaylist: p_item] ) if(! [self isItemInPlaylist: p_item] )
return; return;
char *psz_temp; char *psz_temp;
vlc_mutex_lock( &p_item->input.lock ); vlc_mutex_lock( &p_item->input.lock );
...@@ -324,7 +324,7 @@ ...@@ -324,7 +324,7 @@
for( i = 0 ; i < p_playlist->i_size ; i++ ) for( i = 0 ; i < p_playlist->i_size ; i++ )
{ {
if( p_playlist->pp_items[i] == p_local_item ) if( p_playlist->pp_all_items[i] == p_local_item )
{ {
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
return YES; return YES;
......
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