Re: NSView, Animator, and Autoresizing

2013-09-27 Thread Robert Vojta
Hi, don't have 10.8.X around now. But on redacted, it seems to behave correctly: * when your view is resizing and I start resizing window, * animation is stopped, * your view is being resized correctly according to your mask (left, top, bottom stays, height is resized) R. On Fri, Sep 27,

NSView, Animator, and Autoresizing

2013-09-26 Thread Seth Willits
So it turns out that if a view is being animated via the animator, autoresizing is ignored. (The same goes for using a non-blocking NSViewAnimation.) Simple project. Click button, and resize window while the view is slowly resizing. http://www.sethwillits.com/temp/ViewAnimatorResize.zip Have