mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-07 18:36:36 +00:00
Fixed reordering tabs with glance and hidden tabs in workspaces
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user