diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-09-17 01:22:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 01:22:55 +0200 |
commit | d118d486a680ed42030b1bdee263a29831da3e86 (patch) | |
tree | 8b381337c71dbbe0c098297edb49b3e7db55b73b /application/basilisk/components/sessionstore/SessionStore.jsm | |
parent | 08dd8ff76063097d7ceea3ec2877028e57ede211 (diff) | |
parent | c5ea5076e8efe4b9c030f2f3316127a205feb5b1 (diff) | |
download | UXP-d118d486a680ed42030b1bdee263a29831da3e86.tar UXP-d118d486a680ed42030b1bdee263a29831da3e86.tar.gz UXP-d118d486a680ed42030b1bdee263a29831da3e86.tar.lz UXP-d118d486a680ed42030b1bdee263a29831da3e86.tar.xz UXP-d118d486a680ed42030b1bdee263a29831da3e86.zip |
Merge pull request #770 from JustOff/PR_bgtab_notify
Skip notifications for background tabs when restoring a session in Pale Moon and Basilisk
Diffstat (limited to 'application/basilisk/components/sessionstore/SessionStore.jsm')
-rw-r--r-- | application/basilisk/components/sessionstore/SessionStore.jsm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/application/basilisk/components/sessionstore/SessionStore.jsm b/application/basilisk/components/sessionstore/SessionStore.jsm index e23b205fc..b599bc162 100644 --- a/application/basilisk/components/sessionstore/SessionStore.jsm +++ b/application/basilisk/components/sessionstore/SessionStore.jsm @@ -3113,7 +3113,8 @@ var SessionStoreInternal = { tabbrowser.addTab("about:blank", {skipAnimation: true, forceNotRemote, - userContextId}); + userContextId, + skipBackgroundNotify: true}); // If we inserted a new tab because the userContextId didn't match with the // open tab, even though `t < openTabCount`, we need to remove that open tab |