From b01ffe299f9c2961e55d98894966d7200eda0798 Mon Sep 17 00:00:00 2001 From: Brad Lassey Date: Tue, 1 Sep 2009 17:29:06 -0400 Subject: [PATCH] bug 513723 - Resize awesomebar and not window to account for soft keyboard, follow up r=mfinkle --- mobile/chrome/content/browser.js | 1 - 1 file changed, 1 deletion(-) diff --git a/mobile/chrome/content/browser.js b/mobile/chrome/content/browser.js index d9d8b221d91c..91b83c9aa672 100644 --- a/mobile/chrome/content/browser.js +++ b/mobile/chrome/content/browser.js @@ -2064,7 +2064,6 @@ var SoftKeyboardObserver = { let height = rect.bottom - rect.top; let width = rect.right - rect.left; let popup = document.getElementById("popup_autocomplete"); - popup.top = rect.top + BrowserUI.toolbarH; popup.height = height - BrowserUI.toolbarH; popup.width = width; }