1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-10 05:35:29 +02:00

Fixed reordering tabs with glance and hidden tabs in workspaces

This commit is contained in:
mr. m 2025-02-24 10:22:13 +01:00
parent 9aa48b2645
commit 41617183ab
No known key found for this signature in database
GPG key ID: 419302196C23B258
2 changed files with 6 additions and 5 deletions

View file

@ -1809,9 +1809,10 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
// 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);
if (!tab.hasAttribute('zen-essential')) {
gBrowser.showTab(tab);
}
}
}
}