Bug 715889 - Don't try to show the form autocomplete popup in full-screen VKB. r=mfinkle

This commit is contained in:
Margaret Leibovic 2012-01-10 17:38:58 -08:00
parent ab1f60ad56
commit d900b3db5b

View File

@ -955,6 +955,8 @@ abstract public class GeckoApp
final double zoom = message.getDouble("zoom");
mMainHandler.post(new Runnable() {
public void run() {
// Don't show autocomplete popup when using fullscreen VKB
if (!GeckoInputConnection.mIMELandscapeFS)
mAutoCompletePopup.show(suggestions, rect, zoom);
}
});