From c50d92ba56368f549e5044cf56970da7731860e8 Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Tue, 30 Oct 2018 20:13:33 +0700 Subject: [PATCH] Set tool tip text color to black --- Frameworks/OakAppKit/src/OakToolTip.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/Frameworks/OakAppKit/src/OakToolTip.mm b/Frameworks/OakAppKit/src/OakToolTip.mm index 17758538..9cff76de 100644 --- a/Frameworks/OakAppKit/src/OakToolTip.mm +++ b/Frameworks/OakAppKit/src/OakToolTip.mm @@ -55,6 +55,7 @@ static __weak OakToolTip* LastToolTip; [field setDrawsBackground:NO]; [field setAutoresizingMask:NSViewWidthSizable | NSViewHeightSizable]; [field setFont:defaultFont]; + [field setTextColor:[NSColor blackColor]]; [field setStringValue:@"This is a nice little code block"]; [self setContentView:field];