fix bug when quickly toggling the advanced bar

This commit is contained in:
Mitchell Livingston 2008-01-16 16:39:18 +00:00
parent 756bacd076
commit 875b98145f
1 changed files with 7 additions and 4 deletions

View File

@ -558,10 +558,13 @@
{
[self resizePiecesBarIncrement];
fPiecesBarTimer = [NSTimer scheduledTimerWithTimeInterval: PIECE_TIME target: self
selector: @selector(resizePiecesBarIncrement) userInfo: nil repeats: YES];
[[NSRunLoop currentRunLoop] addTimer: fPiecesBarTimer forMode: NSModalPanelRunLoopMode];
[[NSRunLoop currentRunLoop] addTimer: fPiecesBarTimer forMode: NSEventTrackingRunLoopMode];
if (!fPiecesBarTimer)
{
fPiecesBarTimer = [NSTimer scheduledTimerWithTimeInterval: PIECE_TIME target: self
selector: @selector(resizePiecesBarIncrement) userInfo: nil repeats: YES];
[[NSRunLoop currentRunLoop] addTimer: fPiecesBarTimer forMode: NSModalPanelRunLoopMode];
[[NSRunLoop currentRunLoop] addTimer: fPiecesBarTimer forMode: NSEventTrackingRunLoopMode];
}
}
@end