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.
pull/97/head
whitequark 2016-10-12 23:24:17 +04:00
parent b5f5e05336
commit 90f10ccfa6
1 changed files with 1 additions and 0 deletions

View File

@ -1015,6 +1015,7 @@ void InitTextWindow() {
[TW setContentView:scrollView]; [TW setContentView:scrollView];
[scrollView setBackgroundColor:[NSColor blackColor]]; [scrollView setBackgroundColor:[NSColor blackColor]];
[scrollView setHasVerticalScroller:YES]; [scrollView setHasVerticalScroller:YES];
[scrollView setScrollerKnobStyle:NSScrollerKnobStyleLight];
[[scrollView contentView] setCopiesOnScroll:YES]; [[scrollView contentView] setCopiesOnScroll:YES];
TWView = [[TextWindowView alloc] init]; TWView = [[TextWindowView alloc] init];