mirror of
https://ark.sudovanilla.org/Korbs/electron-tabs.git
synced 2024-12-22 19:43:53 +00:00
Don't change active tab if closed tab wasn't active
This commit is contained in:
parent
f6664f50d3
commit
31244686fe
6
index.js
6
index.js
|
@ -222,7 +222,11 @@ class Tab extends EventEmitter {
|
|||
tabGroup.viewContainer.removeChild(this.webview);
|
||||
TabGroupPrivate.removeTab.bind(tabGroup)(this, true);
|
||||
this.emit("close", this);
|
||||
TabGroupPrivate.activateRecentTab.bind(tabGroup)();
|
||||
|
||||
let activeTab = this.tabGroup.getActiveTab();
|
||||
if (activeTab.id === this.id) {
|
||||
TabGroupPrivate.activateRecentTab.bind(tabGroup)();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue