aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-21 10:59:58 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-21 10:59:58 -0800
commit9dc260ebbf419f6f2b18560be89ea206e328042a (patch)
treec6cf1c6077bc9446532221700c43656feffc7521 /java/src
parent31bcccc7e36cbf1db7a2c111b2d0c6a659f705a8 (diff)
parentb14fc8822bd288f337a677a9a6fa8d3d1c8a0950 (diff)
downloadlatinime-9dc260ebbf419f6f2b18560be89ea206e328042a.tar.gz
latinime-9dc260ebbf419f6f2b18560be89ea206e328042a.tar.xz
latinime-9dc260ebbf419f6f2b18560be89ea206e328042a.zip
am b14fc882: am 58d6d061: Disable touchable region until we come up with correct implementation
* commit 'b14fc8822bd288f337a677a9a6fa8d3d1c8a0950': Disable touchable region until we come up with correct implementation
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 7089874eb..9a939bea8 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -868,14 +868,14 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
if (!isFullscreenMode()) {
outInsets.contentTopInsets = outInsets.visibleTopInsets;
}
- KeyboardView inputView = mKeyboardSwitcher.getInputView();
+ /*KeyboardView inputView = mKeyboardSwitcher.getInputView();
if (inputView != null) {
// Screen's heightPixels may be too big, but want to make
// it large enough to cover status bar in any cases.
outInsets.touchableInsets = InputMethodService.Insets.TOUCHABLE_INSETS_REGION;
outInsets.touchableRegion.set(
0, 0, inputView.getWidth(), getResources().getDisplayMetrics().heightPixels);
- }
+ }*/
}
@Override