fix: Fixed swiping workspaces when having container specific essentials, b=(no-bug), c=workspaces

This commit is contained in:
mr. m
2025-04-30 01:13:08 +02:00
parent 6ccf5053cd
commit 2cbe662019

View File

@@ -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) {