From 7dcd4d425e2db602319bcb9f4aba354cdabc21bb Mon Sep 17 00:00:00 2001 From: wavygecko <110956608+wavygecko@users.noreply.github.com> Date: Sat, 4 Mar 2023 17:35:57 -0500 Subject: [PATCH] 5007: adds browser.sessionstore.max_windows_undo Adds flag for preventing reopening closed windows in new session --- user.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/user.js b/user.js index 4217d61..bb0cc68 100644 --- a/user.js +++ b/user.js @@ -909,8 +909,9 @@ user_pref("_user.js.parrot", "5000 syntax error: the parrot's taken 'is last bow * control that instead; e.g. disable history, clear history on exit, use PB mode * [NOTE] favicons.sqlite is sanitized on Firefox close ***/ // user_pref("browser.chrome.site_icons", false); -/* 5007: exclude "Undo Closed Tabs" in Session Restore ***/ +/* 5007: exclude "Undo Closed Tabs" and "Undo Closed Windows" in Session Restore ***/ // user_pref("browser.sessionstore.max_tabs_undo", 0); + // user_pref("browser.sessionstore.max_windows_undo", 0); /* 5008: disable resuming session from crash * [TEST] about:crashparent ***/ // user_pref("browser.sessionstore.resume_from_crash", false);