diff options
author | Alan Third <alan@idiocy.org> | 2018-11-24 09:30:17 +0000 |
---|---|---|
committer | Alan Third <alan@idiocy.org> | 2018-11-25 11:25:33 +0000 |
commit | ea624626ccc2a108c3d6420d4f7ed3edae185425 (patch) | |
tree | 897c2d6e4de1f1ea43c74628959138a402183ead /src/nsmenu.m | |
parent | 094fcf62d289f19a4633275812e9e5e500463e91 (diff) | |
download | emacs-ea624626ccc2a108c3d6420d4f7ed3edae185425.tar.gz |
Set tooltip text color (bug#33452)
; Do not merge into master
* src/nsmenu.m: ([EmacsTooltip init]): Set text color to black.
Diffstat (limited to 'src/nsmenu.m')
-rw-r--r-- | src/nsmenu.m | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nsmenu.m b/src/nsmenu.m index 604adcf40b5..52a7d52e8e0 100644 --- a/src/nsmenu.m +++ b/src/nsmenu.m @@ -1318,8 +1318,9 @@ update_frame_tool_bar (struct frame *f) - (instancetype)init { - NSColor *col = [NSColor colorWithCalibratedRed: 1.0 green: 1.0 + NSColor *bgcol = [NSColor colorWithCalibratedRed: 1.0 green: 1.0 blue: 0.792 alpha: 0.95]; + NSColor *fgcol = [NSColor blackColor]; NSFont *font = [NSFont toolTipsFontOfSize: 0]; NSFont *sfont = [font screenFont]; int height = [sfont ascender] - [sfont descender]; @@ -1328,7 +1329,8 @@ update_frame_tool_bar (struct frame *f) textField = [[NSTextField alloc] initWithFrame: r]; [textField setFont: font]; - [textField setBackgroundColor: col]; + [textField setTextColor: fgcol]; + [textField setBackgroundColor: bgcol]; [textField setEditable: NO]; [textField setSelectable: NO]; @@ -1345,7 +1347,7 @@ update_frame_tool_bar (struct frame *f) [win setReleasedWhenClosed: NO]; [win setDelegate: self]; [[win contentView] addSubview: textField]; -/* [win setBackgroundColor: col]; */ +/* [win setBackgroundColor: bgcol]; */ [win setOpaque: NO]; return self; |