From: Felix Paul Kühne Date: Thu, 17 Jul 2008 11:43:22 +0000 (+0200) Subject: macosx: Make sure we update the information panel, if the playlist changes. X-Git-Tag: 0.9.0-test3~408 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b9d34123ac6c9fbcb4fb890fdd1340143d64b5b5;p=vlc 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 ;-) --- diff --git a/modules/gui/macosx/playlist.m b/modules/gui/macosx/playlist.m index 232aa4b8f0..974a4a170e 100644 --- a/modules/gui/macosx/playlist.m +++ b/modules/gui/macosx/playlist.m @@ -478,6 +478,8 @@ [o_status_field setStringValue: _NS("1 item")]; } vlc_object_release( p_playlist ); + + [self outlineViewSelectionDidChange: nil]; } - (void)playModeUpdated @@ -560,7 +562,7 @@ /* 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 - 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). */ - (BOOL)isItem: (playlist_item_t *)p_item @@ -655,7 +657,6 @@ } } } - } - (IBAction)savePlaylist:(id)sender