From 32f3c51234a50aacef1783c5bd553bdcfcb2d5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Fri, 16 Oct 2009 12:18:48 -0700 Subject: [PATCH] Bug 519099 - Location bar stops working and does not allow any input. Restarts does not help. r=zeniko --- browser/components/sessionstore/src/nsSessionStore.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/browser/components/sessionstore/src/nsSessionStore.js b/browser/components/sessionstore/src/nsSessionStore.js index a1c403c53a0c..36f2b8170f61 100644 --- a/browser/components/sessionstore/src/nsSessionStore.js +++ b/browser/components/sessionstore/src/nsSessionStore.js @@ -269,6 +269,8 @@ SessionStoreService.prototype = { // make sure that at least the first window doesn't have anything hidden delete this._initialState.windows[0].hidden; + // Since nothing is hidden in the first window, it cannot be a popup + delete this._initialState.windows[0].isPopup; } catch (ex) { debug("The session file is invalid: " + ex); } }