From 9f515b8612a8de4a6f2ce8b7d9ac959044f527f6 Mon Sep 17 00:00:00 2001 From: Abhishek Banthia Date: Mon, 4 Apr 2016 00:27:15 -0400 Subject: [PATCH] Fix for Dark Mode issue. --- Clocker/StatusItemView.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Clocker/StatusItemView.m b/Clocker/StatusItemView.m index 446fe66..3f133d4 100755 --- a/Clocker/StatusItemView.m +++ b/Clocker/StatusItemView.m @@ -78,6 +78,8 @@ // Set up dark mode for icon if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"AppleInterfaceStyle"] isEqualToString:@"Dark"]) { + //Fix for Tammy Jackson's feedback + textField.backgroundColor = [NSColor clearColor]; textField.textColor = [NSColor whiteColor]; self.image = [self imageWithSubviewsWithTextField:textField]; }