[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 <kode54@gmail.com>xcode15
parent
7d8c2c53a0
commit
44e1fc5c49
|
@ -557,7 +557,7 @@ static AppController *kAppController = nil;
|
||||||
NSMutableDictionary *userDefaultsValuesDict = [NSMutableDictionary dictionary];
|
NSMutableDictionary *userDefaultsValuesDict = [NSMutableDictionary dictionary];
|
||||||
|
|
||||||
// Font defaults
|
// Font defaults
|
||||||
float fFontSize = [NSFont systemFontSizeForControlSize:NSControlSizeSmall];
|
float fFontSize = [NSFont systemFontSizeForControlSize:NSControlSizeRegular];
|
||||||
NSNumber *fontSize = @(fFontSize);
|
NSNumber *fontSize = @(fFontSize);
|
||||||
[userDefaultsValuesDict setObject:fontSize forKey:@"fontSize"];
|
[userDefaultsValuesDict setObject:fontSize forKey:@"fontSize"];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue