Consider URLs as 'internal' source so they don't auto play

CQTexperiment
Christopher Snowhill 2020-03-10 02:17:19 -07:00
parent a43ae5fc81
commit 7f3da31b45
1 changed files with 2 additions and 2 deletions

View File

@ -101,8 +101,8 @@
{
if (returnCode == NSOKButton)
{
[playlistLoader willInsertURLs:[NSArray arrayWithObject:[panel url]] origin:URLOriginExternal];
[playlistLoader didInsertURLs:[playlistLoader addURLs:[NSArray arrayWithObject:[panel url]] sort:NO] origin:URLOriginExternal];
[playlistLoader willInsertURLs:[NSArray arrayWithObject:[panel url]] origin:URLOriginInternal];
[playlistLoader didInsertURLs:[playlistLoader addURLs:[NSArray arrayWithObject:[panel url]] sort:NO] origin:URLOriginInternal];
}
}