aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-21 14:37:35 +0900
committersatok <satok@google.com>2011-01-21 14:41:20 +0900
commit58d6d0615d62c45c390bb4c5c0e3d2efabac814d (patch)
treec6cf1c6077bc9446532221700c43656feffc7521 /java/src
parenta2ad96d95986eb61c3d2d5abce154fb4c3803cac (diff)
downloadlatinime-58d6d0615d62c45c390bb4c5c0e3d2efabac814d.tar.gz
latinime-58d6d0615d62c45c390bb4c5c0e3d2efabac814d.tar.xz
latinime-58d6d0615d62c45c390bb4c5c0e3d2efabac814d.zip
Disable touchable region until we come up with correct implementation
bug: 3373640 Change-Id: I22448b779b0adc60f590aaef916075c7847dcdc9
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