summaryrefslogtreecommitdiffstats
path: root/application/palemoon/components
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-09-16 19:46:33 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-09-16 19:46:33 +0300
commit465c0a564647d4b33bd456a276afd61affd06365 (patch)
treeeaccb2f55bfc14fb4283ce6a016e89d0293f6d94 /application/palemoon/components
parent08dd8ff76063097d7ceea3ec2877028e57ede211 (diff)
downloadUXP-465c0a564647d4b33bd456a276afd61affd06365.tar
UXP-465c0a564647d4b33bd456a276afd61affd06365.tar.gz
UXP-465c0a564647d4b33bd456a276afd61affd06365.tar.lz
UXP-465c0a564647d4b33bd456a276afd61affd06365.tar.xz
UXP-465c0a564647d4b33bd456a276afd61affd06365.zip
[PALEMOON] Skip notifications for background tabs when restoring a session
Diffstat (limited to 'application/palemoon/components')
-rw-r--r--application/palemoon/components/sessionstore/SessionStore.jsm7
1 files changed, 5 insertions, 2 deletions
diff --git a/application/palemoon/components/sessionstore/SessionStore.jsm b/application/palemoon/components/sessionstore/SessionStore.jsm
index c5e55321c..e19a578f4 100644
--- a/application/palemoon/components/sessionstore/SessionStore.jsm
+++ b/application/palemoon/components/sessionstore/SessionStore.jsm
@@ -2739,7 +2739,9 @@ var SessionStoreInternal = {
for (var t = 0; t < newTabCount; t++) {
tabs.push(t < openTabCount ?
tabbrowser.tabs[t] :
- tabbrowser.addTab("about:blank", {skipAnimation: true}));
+ tabbrowser.addTab("about:blank",
+ {skipAnimation: true,
+ skipBackgroundNotify: true}));
// when resuming at startup: add additionally requested pages to the end
if (!aOverwriteTabs && root._firstTabs) {
tabbrowser.moveTabTo(tabs[t], t);
@@ -4684,7 +4686,8 @@ var TabAttributes = {
// 'image' should not be accessed directly but handled by using the
// gBrowser.getIcon()/setIcon() methods.
// 'pending' is used internal by sessionstore and managed accordingly.
- _skipAttrs: new Set(["image", "pending"]),
+ // 'skipbackgroundnotify' is used internal by tabbrowser.xml.
+ _skipAttrs: new Set(["image", "pending", "skipbackgroundnotify"]),
persist: function (name) {
if (this._attrs.has(name) || this._skipAttrs.has(name)) {