mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-10 05:35:29 +02:00
Merge branch 'dev' of https://github.com/zen-browser/desktop into dev
This commit is contained in:
commit
9aa48b2645
4 changed files with 12 additions and 4 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue