From d84a12d596707bddf33d36e8a8e0ee4247a5f981 Mon Sep 17 00:00:00 2001 From: matthewleon Date: Sat, 1 Mar 2008 19:56:10 +0000 Subject: [PATCH] Hack to fix display of newly added songs (no idea why this is should be necessary, maybe something wrong with KVO). --- Playlist/PlaylistLoader.m | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Playlist/PlaylistLoader.m b/Playlist/PlaylistLoader.m index 27a23c229..ec17bdcfd 100755 --- a/Playlist/PlaylistLoader.m +++ b/Playlist/PlaylistLoader.m @@ -246,16 +246,16 @@ //Create actual entries int i; - NSMutableArray *entries = [NSMutableArray array]; + NSMutableArray *entries = [NSMutableArray arrayWithCapacity:[validURLs count]]; for (i = 0; i < [validURLs count]; i++) { PlaylistEntry *pe = [[PlaylistEntry alloc] init]; NSURL *url = [validURLs objectAtIndex:i]; - [pe setURL:url]; + pe.URL = url; pe.index = index+i; - [pe setTitle:[[url path] lastPathComponent]]; - [pe setQueuePosition:-1]; + pe.title = [[url path] lastPathComponent]; + pe.queuePosition = -1; [entries addObject:pe]; [pe release]; @@ -297,8 +297,8 @@ - (NSDictionary *)readEntryInfo:(PlaylistEntry *)pe { - // Just setting this to 30 for now... - NSMutableDictionary *entryInfo = [NSMutableDictionary dictionaryWithCapacity:30]; + // Just setting this to 20 for now... + NSMutableDictionary *entryInfo = [NSMutableDictionary dictionaryWithCapacity:20]; NSDictionary *entryProperties; entryProperties = [AudioPropertiesReader propertiesForURL:pe.URL]; if (entryProperties == nil) @@ -335,8 +335,10 @@ } //Hack so the display gets updated - if (pe == [playlistController currentEntry]) - [playlistController setCurrentEntry:[playlistController currentEntry]]; + PlaylistEntry *tempEntry = [playlistController currentEntry]; + [playlistController setCurrentEntry:pe]; + [playlistController setCurrentEntry:tempEntry]; + // stop observing [object removeObserver:self forKeyPath:keyPath]; }