1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-10 18:15:30 +02:00

Fixed creating a new workspace in the new system

This commit is contained in:
mr. m 2025-02-12 10:58:53 +01:00
parent c4b4aa6287
commit 22cad83c8f
No known key found for this signature in database
GPG key ID: 419302196C23B258
2 changed files with 3 additions and 3 deletions

View file

@ -1703,9 +1703,9 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
};
this._prepareNewWorkspace(window);
const perifery = document.querySelector('#tabbrowser-arrowscrollbox-periphery[hidden]');
preifery?.removeAttribute('hidden');
perifery?.removeAttribute('hidden');
this._createWorkspaceTabsSection(window, [], perifery);
preifery.setAttribute('hidden', 'true');
perifery.setAttribute('hidden', 'true');
return window;
}