Commit b9d34123 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: Make sure we update the information panel, if the playlist changes.

We shouldn't think that we are the only one who can change the pl ;-)
parent 16c8c42c
...@@ -478,6 +478,8 @@ ...@@ -478,6 +478,8 @@
[o_status_field setStringValue: _NS("1 item")]; [o_status_field setStringValue: _NS("1 item")];
} }
vlc_object_release( p_playlist ); vlc_object_release( p_playlist );
[self outlineViewSelectionDidChange: nil];
} }
- (void)playModeUpdated - (void)playModeUpdated
...@@ -560,7 +562,7 @@ ...@@ -560,7 +562,7 @@
/* Check if p_item is a child of p_node recursively. We need to check the item /* Check if p_item is a child of p_node recursively. We need to check the item
existence first since OSX sometimes tries to redraw items that have been existence first since OSX sometimes tries to redraw items that have been
deleted. We don't do it when not required since this verification takes deleted. We don't do it when not required since this verification takes
quite a long time on big playlists (yes, pretty hacky). */ quite a long time on big playlists (yes, pretty hacky). */
- (BOOL)isItem: (playlist_item_t *)p_item - (BOOL)isItem: (playlist_item_t *)p_item
...@@ -655,7 +657,6 @@ ...@@ -655,7 +657,6 @@
} }
} }
} }
} }
- (IBAction)savePlaylist:(id)sender - (IBAction)savePlaylist:(id)sender
......
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