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:
parent
9aa48b2645
commit
41617183ab
2 changed files with 6 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue