1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-10 05:35:29 +02:00
This commit is contained in:
mr. M 2025-02-24 08:08:11 +01:00
commit 9aa48b2645
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
4 changed files with 12 additions and 4 deletions

View file

@ -1805,6 +1805,15 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
// Fix ctrl+tab behavior. Note, we dont call it with "await" because we dont want to wait for it
this._fixCtrlTabBehavior();
// Bug: When updating from previous versions, we used to hide the tabs not used in the new workspace
// we now need to show them again
if (onInit) {
console.log(this.allStoredTabs);
for (const tab of this.allStoredTabs) {
gBrowser.showTab(tab);
}
}
}
async _fixCtrlTabBehavior() {