From 18f99b99b3209aee3daa295aad70ef3f0a086552 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 6 Nov 2003 08:33:47 +0000 Subject: More checking for background wrap enabled. Shorter time between timer ticks. --- win32/ScintillaWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 9c2d78e1c..097b8a84f 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -914,7 +914,7 @@ bool ScintillaWin::SetIdle(bool on) { // and are only posted when the message queue is empty, i.e. during idle time. if (idler.state != on) { if (on) { - idler.idlerID = ::SetTimer(MainHWND(), idleTimerID, 20, NULL) + idler.idlerID = ::SetTimer(MainHWND(), idleTimerID, 10, NULL) ? reinterpret_cast(idleTimerID) : 0; } else { ::KillTimer(MainHWND(), reinterpret_cast(idler.idlerID)); -- cgit v1.2.3