aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-01-28 07:31:48 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-01-28 07:31:48 +0000
commit36fda2bae38a8bf6b07c449f63af817cdde72de5 (patch)
treea340e3e6ea39c2c563e931c3752f201c258d4d47 /java/src
parent7593f93565766be82365ba4af8d947e7b5e08a50 (diff)
parent86210c7dc70c3fbb42dbf4ef8f699f0f7d5b9c2e (diff)
downloadlatinime-36fda2bae38a8bf6b07c449f63af817cdde72de5.tar.gz
latinime-36fda2bae38a8bf6b07c449f63af817cdde72de5.tar.xz
latinime-36fda2bae38a8bf6b07c449f63af817cdde72de5.zip
Merge "[IL96] Inline a method"
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 7defa4529..ba6dac6a2 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1033,10 +1033,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
}
}
- private void setSuggestionStripShown(final boolean shown) {
- setSuggestionStripShownInternal(shown, /* needsInputViewShown */true);
- }
-
private int getAdjustedBackingViewHeight() {
final int currentHeight = mKeyPreviewBackingView.getHeight();
if (currentHeight > 0) {
@@ -1347,7 +1343,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// the practice.
mInputLogic.mConnection.setComposingText(textWithUnderline, 1);
}
- setSuggestionStripShown(shouldShow);
+ setSuggestionStripShownInternal(shouldShow, true /* needsInputViewShown */);
}
// TODO[IL]: Move this out of LatinIME.