Changed the default initial keyrepeat delay to 500ms from 150ms.

It should at least be higher than the repeat rate (200ms), and I think 500ms
is about right. That's what X defaults to, I believe.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2251 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2003-02-10 18:48:16 +00:00
parent dbbd006c6a
commit 1a3699b39c
@@ -1,5 +1,5 @@
//
// $Id: KeyTranslatorImpl.java,v 1.5 2003/01/17 01:33:34 shaper Exp $
// $Id: KeyTranslatorImpl.java,v 1.6 2003/02/10 18:48:16 ray Exp $
package com.threerings.util;
@@ -168,5 +168,5 @@ public class KeyTranslatorImpl implements KeyTranslator
/** The default delay in milliseconds before auto-repeated key presses
* will begin. */
protected static final long DEFAULT_REPEAT_DELAY = 150L;
protected static final long DEFAULT_REPEAT_DELAY = 500L;
}