From 58d6d0615d62c45c390bb4c5c0e3d2efabac814d Mon Sep 17 00:00:00 2001 From: satok Date: Fri, 21 Jan 2011 14:37:35 +0900 Subject: [PATCH] Disable touchable region until we come up with correct implementation bug: 3373640 Change-Id: I22448b779b0adc60f590aaef916075c7847dcdc9 --- java/src/com/android/inputmethod/latin/LatinIME.java | 4 ++-- 1 file 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