Bug using NSProgressIndicator with NSWindow animated resize
Bug using NSProgressIndicator with NSWindow animated resize
- Subject: Bug using NSProgressIndicator with NSWindow animated resize
- From: Guillame Borios <email@hidden>
- Date: Thu, 21 Nov 2002 12:29:27 +0100
Hi !
I have a problem using a threaded NSProgressIndicator. If I resize the
window with animate = YES, the progress indicator animation does not
animate anymore. if I do it with animate = NO, everything works well.
The code below isoltes the problem. Do I miss something or is it a bug?
If it is a bug is it already file or do I have to file it?
IBOutlet NSProgressIndicator * one;
-(IBAction)go:(id)sender
{
[[one window] setFrame:[[one window]frame] display:YES animate:YES];
[one setUsesThreadedAnimation:YES];
[one startAnimation:self];
while (1);
}
(I know this code seems stupid but it's just to isolate the bug!)
Thx...
-Gyom
---------------------------------------------------------------------
From Guillaume Borios [email@hidden]
Software designer at iOS Software [
http://ios.free.fr/]
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.