mamburu: 'Add to playlist' and 'Set to playlist' from the file tree context menu should now 'do what it says on the tin' (and not depend on playlist preferences setting)

CQTexperiment
Chris Moeller 2013-10-12 14:02:40 -07:00
parent c088011fd5
commit 35e8aa4db1
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@
- (void)addToPlaylist:(NSArray *)urls
{
[playlistLoader willInsertURLs:urls origin:URLOriginExternal];
[playlistLoader didInsertURLs:[playlistLoader addURLs:urls sort:YES] origin:URLOriginExternal];
[playlistLoader willInsertURLs:urls origin:URLOriginInternal];
[playlistLoader didInsertURLs:[playlistLoader addURLs:urls sort:YES] origin:URLOriginInternal];
}
- (void)clear:(id)sender