Skip to content

Commit

Permalink
Use text background system color in sidebar field editor.
Browse files Browse the repository at this point in the history
  • Loading branch information
robotoad committed Oct 15, 2018
1 parent 0423cab commit 0931b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenEmu/OESidebarFieldEditor.m
Expand Up @@ -96,7 +96,7 @@ - (void)viewDidMoveToWindow
[NSStringFromClass([[self superview] class]) isEqualToString:@"_NSKeyboardFocusClipView"])
{
OEBackgroundColorView *cont = [[OEBackgroundColorView alloc] initWithFrame:NSInsetRect([self superFrame], -1, -1)];
cont.backgroundColor = [NSColor colorWithDeviceRed:0.09 green:0.153 blue:0.553 alpha:1.0];
cont.backgroundColor = NSColor.textBackgroundColor;
[self setContainer:cont];

[self updateContainerFrame];
Expand Down

0 comments on commit 0931b66

Please sign in to comment.