How can I disable horizontal scrolling for NSScrollView?
I first tried disabling the scrollbar by setting:
scrollView!.hasHorizontalScroller = false
and it worked successfully, but I could still scroll from left to right using my trackpad. Is there a way to ensure that horizontal scrolling is completely disabled for the NSScrollView object?
+3
source to share