We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59e1d14 commit 7a99f0fCopy full SHA for 7a99f0f
src/zen/workspaces/ZenWorkspaces.mjs
@@ -3205,7 +3205,7 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
3205
if (!this._hasInitializedTabsStrip) {
3206
return gBrowser.browsers;
3207
}
3208
- const browsers = Array.from(gBrowser.tabpanels.querySelectorAll('browser'));
+ const browsers = Array.from(this.allStoredTabs).map(tab => tab.linkedBrowser);
3209
// Sort browsers by making the current workspace first
3210
const currentWorkspace = this.activeWorkspace;
3211
const sortedBrowsers = browsers.sort((a, b) => {
0 commit comments