From d695ddb91a36cf5ca14026f05e1036619f23b207 Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mauro-balades@users.noreply.github.com> Date: Thu, 17 Apr 2025 04:45:17 -0700 Subject: [PATCH] Revert "feat: improve tab switching with trackpad" --- src/zen/workspaces/ZenWorkspaces.mjs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index bee16429..f78843d4 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -466,10 +466,6 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature { this._swipeState.direction = delta > 0 ? 'left' : 'right'; } - if (Math.abs(translateX) >= 40) { - return this._handleSwipeEnd(event); - } - // 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);