mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
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:
parent
ae66db8f89
commit
233089ca43
@ -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);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user