From 99b22f45d9b6b27cc89bf2a2e7f7a875b71c8fa8 Mon Sep 17 00:00:00 2001 From: Abhishek Banthia Date: Fri, 13 Jan 2017 15:35:56 -0500 Subject: [PATCH] Increased font size for menubar text. --- Clocker/StatusItemView.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Clocker/StatusItemView.m b/Clocker/StatusItemView.m index f7df8c2..95c4926 100755 --- a/Clocker/StatusItemView.m +++ b/Clocker/StatusItemView.m @@ -65,7 +65,7 @@ { [super drawRect:dirtyRect]; - NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, self.frame.size.width, 18)]; + NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, self.frame.size.width, 22)]; textField.bordered = NO; textField.alignment = NSTextAlignmentCenter; @@ -78,6 +78,7 @@ CLTimezoneDataOperations *operationObject = [[CLTimezoneDataOperations alloc] initWithTimezoneData:timezoneObject]; textField.stringValue = [operationObject getMenuTitle]; + textField.font = [NSFont systemFontOfSize:14]; // Set up dark mode for icon if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"] isEqualToString:@"Dark"])