From d103d78fc312feff69a99df09a479f996833336b Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 30 Jun 2023 22:14:43 -0700 Subject: [PATCH] Change default open to enqueue and play Instead of clear playlist and play. This was confusing people, apparently. I should have changed it sooner, since this is what I use normally anyway. Signed-off-by: Christopher Snowhill --- Application/AppController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Application/AppController.m b/Application/AppController.m index 2df284d68..01ec49cd0 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -612,7 +612,7 @@ static AppController *kAppController = nil; NSString *feedURLdefault = @"https://cogcdn.cog.losno.co/mercury.xml"; [userDefaultsValuesDict setObject:feedURLdefault forKey:@"SUFeedURL"]; - [userDefaultsValuesDict setObject:@"clearAndPlay" forKey:@"openingFilesBehavior"]; + [userDefaultsValuesDict setObject:@"enqueueAndPlay" forKey:@"openingFilesBehavior"]; [userDefaultsValuesDict setObject:@"enqueue" forKey:@"openingFilesAlteredBehavior"]; [userDefaultsValuesDict setObject:@"albumGainWithPeak" forKey:@"volumeScaling"];