Browse Source

Increased font size for menubar text.

v1.2.4
Abhishek Banthia 8 years ago
parent
commit
99b22f45d9
  1. 3
      Clocker/StatusItemView.m

3
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"])

Loading…
Cancel
Save