aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-03-24 21:28:25 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-03-24 21:28:25 -0700
commitf000bdc696ffb8f6883f01fb094b7ec05e6942f3 (patch)
tree5b1dd346a7d8a0340cc5e6781294adf220649630 /java/src/com/android/inputmethod/latin/LatinIME.java
parent1ddf2a18082d1257e8ec258a870c6ed5f5a54f13 (diff)
parent24119dfd414f948b2da214c021cc76e06b3dd41c (diff)
downloadlatinime-f000bdc696ffb8f6883f01fb094b7ec05e6942f3.tar.gz
latinime-f000bdc696ffb8f6883f01fb094b7ec05e6942f3.tar.xz
latinime-f000bdc696ffb8f6883f01fb094b7ec05e6942f3.zip
Merge "Moved a functionality of setting touchableRegion to InputMethodServiceCompatWrapper."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 79ef03a8b..09a4ead22 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -914,8 +914,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
if (DEBUG) {
Log.d(TAG, "Touchable region " + x + ", " + y + ", " + width + ", " + height);
}
- outInsets.touchableInsets = InputMethodService.Insets.TOUCHABLE_INSETS_REGION;
- outInsets.touchableRegion.set(x, y, width, height);
+ setTouchableRegionCompat(outInsets, x, y, width, height);
}
}