fix: Fixed opening glance on split views, b=(no-bug), c=workspaces

This commit is contained in:
Mr. M
2025-05-01 16:56:09 +02:00
parent f608d6a8ce
commit beab17074d

View File

@@ -2823,6 +2823,10 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
} else if (tab.tagName == 'tab-group') {
for (const groupTab of tab.tabs) {
tabs.push(groupTab);
const glance = groupTab.querySelector('.tabbrowser-tab[glance-id]');
if (glance) {
tabs.push(glance);
}
}
}
}