From 875c8be7c607e965e98bae4c7a2b580df62646cb 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 6ab86fd5913..c5c8f04b8e6 100644 --- a/browser/components/sessionstore/SessionStore.jsm +++ b/browser/components/sessionstore/SessionStore.jsm @@ -5114,7 +5114,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 && @@ -5143,9 +5143,8 @@ var SessionStoreInternal = { case "minimized": if (aSizeModeBeforeMinimized == "maximized") { aWindow.maximize(); + break; } - aWindow.minimize(); - break; case "normal": aWindow.restore(); break; -- 2.30.2