From bea7d8e6516fe13ce8975374ef86d5e7bf637f3e 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 6c5449213..e583058f2 100644 --- a/Application/AppController.m +++ b/Application/AppController.m @@ -534,7 +534,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"];