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)

This commit is contained in:
Chris Moeller 2013-10-12 14:02:40 -07:00
parent c088011fd5
commit 35e8aa4db1

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