summaryrefslogtreecommitdiffstats
path: root/core/java/android/inputmethodservice
diff options
context:
space:
mode:
authorAmith Yamasani <yamasani@google.com>2009-08-13 13:00:12 -0700
committerAmith Yamasani <yamasani@google.com>2009-08-13 13:00:12 -0700
commitae09878698ba6ad56ea43843f5a0895c94c32d90 (patch)
tree528bde1a1f416f986f0ca2a3190650780909d1b5 /core/java/android/inputmethodservice
parenta9f1dd021f8f6ee777bc4d27913bd40c42e753af (diff)
downloadframeworks_base-ae09878698ba6ad56ea43843f5a0895c94c32d90.zip
frameworks_base-ae09878698ba6ad56ea43843f5a0895c94c32d90.tar.gz
frameworks_base-ae09878698ba6ad56ea43843f5a0895c94c32d90.tar.bz2
Increase search radius for adjacent keys, to reduce unpredictability of
suggestions.
Diffstat (limited to 'core/java/android/inputmethodservice')
-rwxr-xr-xcore/java/android/inputmethodservice/Keyboard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/inputmethodservice/Keyboard.java b/core/java/android/inputmethodservice/Keyboard.java
index fea63be..4814b0a 100755
--- a/core/java/android/inputmethodservice/Keyboard.java
+++ b/core/java/android/inputmethodservice/Keyboard.java
@@ -142,7 +142,7 @@ public class Keyboard {
private int[][] mGridNeighbors;
private int mProximityThreshold;
/** Number of key widths from current touch point to search for nearest keys. */
- private static float SEARCH_DISTANCE = 1.4f;
+ private static float SEARCH_DISTANCE = 1.8f;
/**
* Container for keys in the keyboard. All keys in a row are at the same Y-coordinate.