From 44e1fc5c492ead33556fc7b37534e6c6c51cd66a Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 7 Jul 2022 17:56:25 -0700 Subject: [PATCH] [Playlist] Increase default font size to Regular Regular control size ends up being 13 points, rather than the previous default of Small control size, which ended up being 11 points. 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 fc397066c..0089d235f 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -557,7 +557,7 @@ static AppController *kAppController = nil; NSMutableDictionary *userDefaultsValuesDict = [NSMutableDictionary dictionary]; // Font defaults - float fFontSize = [NSFont systemFontSizeForControlSize:NSControlSizeSmall]; + float fFontSize = [NSFont systemFontSizeForControlSize:NSControlSizeRegular]; NSNumber *fontSize = @(fFontSize); [userDefaultsValuesDict setObject:fontSize forKey:@"fontSize"];