Reputation: 5729
Ok, I'm stumped here. I have a few scrollable views in my window, two NSTableViews, and an NSTextView. I'd like to have the scrollbar to hide when not in use, and used the setting of the NSScrollView in IB in Xcode to do so. For the NSTextView it works, but for the NSTableViews the scrollbar won't hide, and the scrollbars are also much wider.
The scrollbar settings are exactly the same for all three NSScrollViews.
What am I missing here, is there another secret setting?
(Lion, Xcode 4)
Upvotes: 0
Views: 1424
Reputation: 5729
The problem was that the NSScrollView
was overlapping a few pixels with a view next to it. I moved them a bit in Interface Builder and it all works fine now.
Upvotes: 1