diff --git a/AppKit/CPScrollView.j b/AppKit/CPScrollView.j index c0710de4d..729ee16a8 100644 --- a/AppKit/CPScrollView.j +++ b/AppKit/CPScrollView.j @@ -364,7 +364,12 @@ */ - (void)setAutohidesScrollers:(BOOL)autohidesScrollers { + if (_autohidesScrollers == autohidesScrollers) + return; + _autohidesScrollers = autohidesScrollers; + + [self reflectScrolledClipView:_contentView]; } /*!