From d80b00a21152b8fcd968482c2afc854b7f51985a Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 12 Nov 2009 17:18:31 +0100 Subject: [PATCH] Avoid wrong sessionstore data to keep windows out of user sight It happens that sessionstore can keep wrong information for the window position or minimized state. Workaround this until the real bug is found and fixed (probably in xulrunner). Closes: #552426, #553453 Gbp-Pq: Topic debian-hacks Gbp-Pq: Name Avoid-wrong-sessionstore-data-to-keep-windows-out-of.patch --- browser/components/sessionstore/SessionStore.jsm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/browser/components/sessionstore/SessionStore.jsm b/browser/components/sessionstore/SessionStore.jsm index 2150c424d8b..14996af5389 100644 --- a/browser/components/sessionstore/SessionStore.jsm +++ b/browser/components/sessionstore/SessionStore.jsm @@ -4812,7 +4812,7 @@ var SessionStoreInternal = { !isNaN(aTop) && (aLeft != win_("screenX") || aTop != win_("screenY")) ) { - aWindow.moveTo(aLeft, aTop); + aWindow.moveTo((aLeft < -aWidth) ? 0 : aLeft, (aTop < -aHeight) ? 0 : aTop); } if ( aWidth && @@ -4841,9 +4841,8 @@ var SessionStoreInternal = { case "minimized": if (aSizeModeBeforeMinimized == "maximized") { aWindow.maximize(); + break; } - aWindow.minimize(); - break; case "normal": aWindow.restore(); break; -- 2.30.2