From e14eacbe033b6205560f30d80f7e4aa1db3b08b2 Mon Sep 17 00:00:00 2001 From: Ali <> Date: Sat, 24 Jun 2023 01:32:28 +0300 Subject: [PATCH] Adjust resistance --- submodules/ChatListUI/Sources/ChatListControllerNode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/ChatListUI/Sources/ChatListControllerNode.swift b/submodules/ChatListUI/Sources/ChatListControllerNode.swift index 0b3bcb72e0..3e3d9c0291 100644 --- a/submodules/ChatListUI/Sources/ChatListControllerNode.swift +++ b/submodules/ChatListUI/Sources/ChatListControllerNode.swift @@ -2355,7 +2355,7 @@ final class ChatListControllerNode: ASDisplayNode, UIGestureRecognizerDelegate { } private func shouldStopScrolling(listView: ListView, velocity: CGFloat, isPrimary: Bool) -> Bool { - if abs(velocity) > 10.0 { + if abs(velocity) > 1.0 { return false }