aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-11-06 08:33:47 +0000
committernyamatongwe <devnull@localhost>2003-11-06 08:33:47 +0000
commit31958200922e6a7c547775195f95982afcb93073 (patch)
treee7813832299f7367c1b4c0eceabfe27a26a087f2 /win32/ScintillaWin.cxx
parent29de9480bcbf388c47ae06534fdea213d7128a43 (diff)
downloadscintilla-mirror-31958200922e6a7c547775195f95982afcb93073.tar.gz
More checking for background wrap enabled.
Shorter time between timer ticks.
Diffstat (limited to 'win32/ScintillaWin.cxx')
-rw-r--r--win32/ScintillaWin.cxx2
1 files changed, 1 insertions, 1 deletions
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<IdlerID>(idleTimerID) : 0;
} else {
::KillTimer(MainHWND(), reinterpret_cast<uptr_t>(idler.idlerID));