Re: Any way to delay drawing after scrolling?

2013-08-06 Thread Steve Mills
On Aug 5, 2013, at 12:34:11, Kyle Sluder k...@ksluder.com wrote: Try turning off copies-on-scroll on your scroll view. That seems to do the trick. Thanks. I'm grabbing its state, turning it off, scrollPoint, then setting it back. -- Steve Mills office: 952-818-3871 home: 952-401-6255 cell:

Re: Any way to delay drawing after scrolling?

2013-08-06 Thread Kyle Sluder
On Aug 6, 2013, at 9:00 AM, Steve Mills smi...@makemusic.com wrote: On Aug 5, 2013, at 12:34:11, Kyle Sluder k...@ksluder.com wrote: Try turning off copies-on-scroll on your scroll view. That seems to do the trick. Thanks. I'm grabbing its state, turning it off, scrollPoint, then setting

Re: Any way to delay drawing after scrolling?

2013-08-06 Thread Steve Mills
On Aug 6, 2013, at 11:09:51, Kyle Sluder k...@ksluder.com wrote: If scrolling your view always requires a redraw, I’d just turn it on in the nib and leave it on. No, it doesn't always need to do this. This is only needed when scaling our view, when the new scroll loc is calculated and set.

Any way to delay drawing after scrolling?

2013-08-05 Thread Steve Mills
We have a view subclass contained in an NSScrollView. After certain operations (such as changing the view scale) we need to change the scroll position, which we do via scrollPoint:, which in turn calls display on the view instead of setNeedsDisplay:YES (which makes sense for simply scroll

Re: Any way to delay drawing after scrolling?

2013-08-05 Thread Kyle Sluder
On Mon, Aug 5, 2013, at 10:12 AM, Steve Mills wrote: We have a view subclass contained in an NSScrollView. After certain operations (such as changing the view scale) we need to change the scroll position, which we do via scrollPoint:, which in turn calls display on the view instead of