aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-20 21:58:30 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-20 21:58:30 -0800
commitb14fc8822bd288f337a677a9a6fa8d3d1c8a0950 (patch)
treec6cf1c6077bc9446532221700c43656feffc7521 /java/src
parent795de14a919a597f3240cdd0ba14d6bc6ff562c9 (diff)
parent58d6d0615d62c45c390bb4c5c0e3d2efabac814d (diff)
downloadlatinime-b14fc8822bd288f337a677a9a6fa8d3d1c8a0950.tar.gz
latinime-b14fc8822bd288f337a677a9a6fa8d3d1c8a0950.tar.xz
latinime-b14fc8822bd288f337a677a9a6fa8d3d1c8a0950.zip
am 58d6d061: Disable touchable region until we come up with correct implementation
* commit '58d6d0615d62c45c390bb4c5c0e3d2efabac814d': 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