From 55fa1df73cf71a5864ee062eab38ea1d5a57b378 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 496a9339de9..0b7bcd6c8a2 100644 --- a/browser/components/sessionstore/SessionStore.jsm +++ b/browser/components/sessionstore/SessionStore.jsm @@ -4917,7 +4917,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 && @@ -4946,9 +4946,8 @@ var SessionStoreInternal = { case "minimized": if (aSizeModeBeforeMinimized == "maximized") { aWindow.maximize(); + break; } - aWindow.minimize(); - break; case "normal": aWindow.restore(); break; -- 2.30.2