diff options
author | 2011-01-21 10:59:58 -0800 | |
---|---|---|
committer | 2011-01-21 10:59:58 -0800 | |
commit | 9dc260ebbf419f6f2b18560be89ea206e328042a (patch) | |
tree | c6cf1c6077bc9446532221700c43656feffc7521 /java/src | |
parent | 31bcccc7e36cbf1db7a2c111b2d0c6a659f705a8 (diff) | |
parent | b14fc8822bd288f337a677a9a6fa8d3d1c8a0950 (diff) | |
download | latinime-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.java | 4 |
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 |