From eac6dcfc6be0b18203b5bd9d8eb588cc74491cdb Mon Sep 17 00:00:00 2001 From: "sdwilsh%shawnwilsher.com" Date: Thu, 13 Nov 2008 18:54:06 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20453831=20-=20Focus=20in=20limbo=20after?= =?UTF-8?q?=20multi-tab=20launch=20pref=20set.=20=20Patch=20by=20Simon=20B?= =?UTF-8?q?=C3=83=C2=BCnzli=20.=20=20r=3Ddietrich,=20a?= =?UTF-8?q?=3Ddveditz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://10.0.0.236/trunk@255028 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/browser/components/sessionstore/src/nsSessionStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/browser/components/sessionstore/src/nsSessionStore.js b/mozilla/browser/components/sessionstore/src/nsSessionStore.js index 98f6fadb7d8..94e769ce053 100644 --- a/mozilla/browser/components/sessionstore/src/nsSessionStore.js +++ b/mozilla/browser/components/sessionstore/src/nsSessionStore.js @@ -1816,7 +1816,7 @@ SessionStoreService.prototype = { // since resizing/moving a window brings it to the foreground, // we might want to re-focus the last focused window if (this.windowToFocus) { - this.windowToFocus.focus(); + this.windowToFocus.content.focus(); } },