From 35e8aa4db1602125012538852e2838819cfb020f Mon Sep 17 00:00:00 2001 From: Chris Moeller Date: Sat, 12 Oct 2013 14:02:40 -0700 Subject: [PATCH] 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) --- FileTree/FileTreeViewController.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FileTree/FileTreeViewController.m b/FileTree/FileTreeViewController.m index b9e12f831..a4b35be24 100644 --- a/FileTree/FileTreeViewController.m +++ b/FileTree/FileTreeViewController.m @@ -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