From 2cbe66201956d4dd2bdae918d65bd9166c744f4b Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Wed, 30 Apr 2025 01:13:08 +0200 Subject: [PATCH] fix: Fixed swiping workspaces when having container specific essentials, b=(no-bug), c=workspaces --- src/zen/workspaces/ZenWorkspaces.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index 676fd4b58..3842d7a94 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -610,8 +610,8 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature { } // Apply a translateX to the tab strip to give the user feedback on the swipe - const currentWorkspace = this.activeWorkspace; - this._organizeWorkspaceStripLocations({ uuid: currentWorkspace }, true, translateX); + const currentWorkspace = this.getActiveWorkspaceFromCache(); + this._organizeWorkspaceStripLocations(currentWorkspace, true, translateX); } async _handleSwipeEnd(event) {