Skip navigation.
 
mlBug using NSProgressIndicator with NSWindow animated resize
FROM : Guillame Borios
DATE : Thu Nov 21 12:29:27 2002

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_removed>]
Software designer at iOS Software [http://ios.free.fr/]
_______________________________________________
cocoa-dev mailing list | <email_removed>
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.

Related mailsAuthorDate
No related mails found.