From dde6030533f23eb0eed89e66eb60b89dcb498e93 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/cocoa/cocoamain.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cocoa/cocoamain.mm b/src/cocoa/cocoamain.mm index 97b699c..9ad2ff6 100644 --- a/src/cocoa/cocoamain.mm +++ b/src/cocoa/cocoamain.mm @@ -1033,6 +1033,7 @@ void InitTextWindow() { [TW setContentView:scrollView]; [scrollView setBackgroundColor:[NSColor blackColor]]; [scrollView setHasVerticalScroller:YES]; + [scrollView setScrollerKnobStyle:NSScrollerKnobStyleLight]; [[scrollView contentView] setCopiesOnScroll:YES]; TWView = [[TextWindowView alloc] init];