From aad8f9e8d46e57236bea2917dc036323bc2546c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Mon, 17 Feb 2025 17:22:02 -0800 Subject: [PATCH] Reduce swipe sensitivity on thread chat view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Value determined experimentally. Closes: https://github.com/damus-io/damus/issues/2743 Changelog-Fixed: Fixed overly sensitive horizontal swipe on thread chat view Signed-off-by: Daniel D’Aquino --- damus/Views/Chat/ChatEventView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/Chat/ChatEventView.swift b/damus/Views/Chat/ChatEventView.swift index 5884b409..386c4eb2 100644 --- a/damus/Views/Chat/ChatEventView.swift +++ b/damus/Views/Chat/ChatEventView.swift @@ -298,7 +298,7 @@ struct ChatEventView: View { } .swipeSpacing(-20) .swipeActionsStyle(.mask) - .swipeMinimumDistance(20) + .swipeMinimumDistance(40) .swipeDragGesturePriority(.normal) } }