From a61b077d3fd44f50752721ce7561a6d0290ba190 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Tue, 18 Nov 2025 00:31:11 +0100 Subject: [PATCH] fix: Don't resize the sidebar when entering DOM fullscreen, b=no-bug, c=workspaces --- src/zen/workspaces/ZenWorkspaces.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index 9966f7f57..c409d7274 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -2555,6 +2555,7 @@ var gZenWorkspaces = new (class extends nsZenMultiWindowFeature { async onPinnedTabsResize(entries, forAnimation = false, animateContainer = false) { if ( + document.documentElement.hasAttribute('inDOMFullscreen') || !this._hasInitializedTabsStrip || (this._organizingWorkspaceStrip && !forAnimation) || document.documentElement.hasAttribute('zen-creating-workspace') ||