From adc71d0979ecfb1a419580d35189e3eb57738115 Mon Sep 17 00:00:00 2001 From: "ere%atp.fi" Date: Tue, 30 Jul 2002 06:19:17 +0000 Subject: [PATCH] Fix for bug 153083, mozilla (nearly) hangs on rendering. Change timer mode to idle timer. r=biesi, sr=jst, a=asa git-svn-id: svn://10.0.0.236/trunk@126050 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/dom/src/base/nsGlobalWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/dom/src/base/nsGlobalWindow.cpp b/mozilla/dom/src/base/nsGlobalWindow.cpp index e4eca054cf3..cb0ef2f5d42 100644 --- a/mozilla/dom/src/base/nsGlobalWindow.cpp +++ b/mozilla/dom/src/base/nsGlobalWindow.cpp @@ -4413,7 +4413,7 @@ GlobalWindowImpl::SetTimeoutOrInterval(PRBool aIsInterval, PRInt32 *aReturn) } err = timeout->timer->Init(TimerCallback, timeout, (PRInt32)interval, - PR_FALSE); + PR_TRUE); if (NS_OK != err) { DropTimeout(timeout); return err;