diff --git a/English.lproj/MainMenu.nib/info.nib b/English.lproj/MainMenu.nib/info.nib index 69f61cacc..b2cbfd390 100644 --- a/English.lproj/MainMenu.nib/info.nib +++ b/English.lproj/MainMenu.nib/info.nib @@ -3,7 +3,7 @@ IBDocumentLocation - 13 189 617 240 0 0 1024 746 + 19 350 617 240 0 0 1024 746 IBEditorPositions 29 @@ -28,11 +28,11 @@ 3 IBOpenObjects - 463 - 21 823 29 513 + 21 + 463 IBSystem Version 8I127 diff --git a/English.lproj/MainMenu.nib/keyedobjects.nib b/English.lproj/MainMenu.nib/keyedobjects.nib index 46f38151e..e7204e444 100644 Binary files a/English.lproj/MainMenu.nib/keyedobjects.nib and b/English.lproj/MainMenu.nib/keyedobjects.nib differ diff --git a/Playlist/PlaylistController.m b/Playlist/PlaylistController.m index 14df6f49e..0f437436a 100644 --- a/Playlist/PlaylistController.m +++ b/Playlist/PlaylistController.m @@ -110,11 +110,10 @@ if (sort == YES) { sortedFiles = [files sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)]; - [files release]; } else { - sortedFiles = [files autorelease]; + sortedFiles = files; } for (i = 0; i < [sortedFiles count]; i++) @@ -147,6 +146,8 @@ //Other thread will release entries....crazy crazy bad idea...whatever [NSThread detachNewThreadSelector:@selector(readMetaData:) toTarget:self withObject:entries]; + [files release]; + return; } @@ -224,8 +225,10 @@ row = 0; NSArray *files = [[info draggingPasteboard] propertyListForType:NSFilenamesPboardType]; + NSLog(@"INSERTING PATHS"); [self insertPaths:files atIndex:row sort:YES]; + NSLog(@"UPDATING"); [self updateIndexesFromRow:row]; [self updateTotalTime];