From 90f10ccfa67d12486c1427f65220ee9faf70cae8 Mon Sep 17 00:00:00 2001 From: whitequark Date: Wed, 12 Oct 2016 23:24:17 +0400 Subject: [PATCH] OS X: set scroller knob style to light. On newer OS X versions the scrollbar is overlaid on the window contents, so a black know is invisible. --- src/platform/cocoamain.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/platform/cocoamain.mm b/src/platform/cocoamain.mm index ad147923..4eb87839 100644 --- a/src/platform/cocoamain.mm +++ b/src/platform/cocoamain.mm @@ -1015,6 +1015,7 @@ void InitTextWindow() { [TW setContentView:scrollView]; [scrollView setBackgroundColor:[NSColor blackColor]]; [scrollView setHasVerticalScroller:YES]; + [scrollView setScrollerKnobStyle:NSScrollerKnobStyleLight]; [[scrollView contentView] setCopiesOnScroll:YES]; TWView = [[TextWindowView alloc] init];