diff --git a/Source/NSTimer.m b/Source/NSTimer.m index fb437a9dd..cf25d5eae 100644 --- a/Source/NSTimer.m +++ b/Source/NSTimer.m @@ -87,7 +87,7 @@ id t = [self timerWithTimeInterval: ti invocation: invocation repeats: f]; - [[RunLoop currentInstance] addTimer: t forMode: nil]; + [[RunLoop currentInstance] addTimer: t forMode: RunLoopDefaultMode]; return t; } @@ -102,7 +102,7 @@ selector: selector userInfo: info repeats: f]; - [[RunLoop currentInstance] addTimer: t forMode: nil]; + [[RunLoop currentInstance] addTimer: t forMode: RunLoopDefaultMode]; return t; }