Bug 717902 - Form autocomplete pop-up with the available suggestions is not displayed in landscape mode when HKB is used. r=blassey

This commit is contained in:
Alex Pakhotin 2012-01-16 17:58:56 -08:00
parent ae66db8f89
commit 233089ca43

View File

@ -956,7 +956,9 @@ abstract public class GeckoApp
mMainHandler.post(new Runnable() {
public void run() {
// Don't show autocomplete popup when using fullscreen VKB
if (!GeckoInputConnection.mIMELandscapeFS)
InputMethodManager imm =
(InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (!imm.isFullscreenMode())
mAutoCompletePopup.show(suggestions, rect, zoom);
}
});