summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorculler <culler>2019-10-09 21:57:18 (GMT)
committerculler <culler>2019-10-09 21:57:18 (GMT)
commit460d5c7b4a4c7c748e5557afb168856f610c967a (patch)
tree70822e343c2e2af66c9d939334d98805f6401365
parent703778af29d1259c0c269e98e1e14d767153ac34 (diff)
downloadtk-460d5c7b4a4c7c748e5557afb168856f610c967a.zip
tk-460d5c7b4a4c7c748e5557afb168856f610c967a.tar.gz
tk-460d5c7b4a4c7c748e5557afb168856f610c967a.tar.bz2
Generate the heartbeat every 0.1 seconds instead of 0.25 seconds.
-rw-r--r--macosx/tkMacOSXNotify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXNotify.c b/macosx/tkMacOSXNotify.c
index 32caccd..9fca4f0 100644
--- a/macosx/tkMacOSXNotify.c
+++ b/macosx/tkMacOSXNotify.c
@@ -325,7 +325,7 @@ TkMacOSXEventsSetupProc(
*/
havePeriodicEvents = YES;
- [NSEvent startPeriodicEventsAfterDelay:0.0 withPeriod:0.25];
+ [NSEvent startPeriodicEventsAfterDelay:0.0 withPeriod:0.1];
}
}
}