From c4f98b0cd89bbbdd017733d4dc9791bea4cf483b Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Sun, 15 Feb 2026 14:12:02 +0100 Subject: [PATCH] fix: Fixed back/frwd buttons switching tab's state instead of space, b=closes #9157, c=workspaces --- src/zen/workspaces/ZenWorkspaces.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index 7af3821db..861a7ae3b 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -523,7 +523,7 @@ class nsZenWorkspaces { _handleAppCommand(event) { // note: Dont use this._hoveringSidebar as it's not as reliable as checking for :hover - if (!this.workspaceEnabled || !this._hoveringSidebar) { + if (!this.workspaceEnabled || !gNavToolbox.matches(":hover")) { return; }