From a698c1a69af631b701c5c4707d2c55e4fcb9f2e2 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Fri, 20 Jun 2025 19:37:24 -0700 Subject: [PATCH] Defaults: Normalize whitespace Whoops, this whitespace got messed with a long time ago. It should be scripted to do whitespace checking before push, but I neglected setting that up. Signed-off-by: Christopher Snowhill --- Application/PlaybackController.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Application/PlaybackController.m b/Application/PlaybackController.m index cd1c8b6f3..be42691fe 100644 --- a/Application/PlaybackController.m +++ b/Application/PlaybackController.m @@ -120,9 +120,9 @@ NSString *CogPlaybackDidStopNotificiation = @"CogPlaybackDidStopNotificiation"; - (void)initDefaults { NSDictionary *defaultsDictionary = @{ @"volume": @(75.0), - @"pitch": @(1.0), - @"tempo": @(1.0), - @"speedLock": @(YES), + @"pitch": @(1.0), + @"tempo": @(1.0), + @"speedLock": @(YES), @"GraphicEQenable": @(NO), @"GraphicEQpreset": @(-1), @"GraphicEQtrackgenre": @(NO),