Various fixes

This commit is contained in:
Ilya Laktyushin
2025-09-07 14:57:43 +05:00
parent 141e7c1f49
commit 4fc3ba70fc
3 changed files with 11 additions and 10 deletions

View File

@@ -431,7 +431,7 @@ public class MinimizedContainerImpl: ASDisplayNode, MinimizedContainer, ASScroll
if let _ = self.item(at: location.y) {
if self.isExpanded {
return abs(velocity.x) > abs(velocity.y)
return abs(velocity.x) > abs(velocity.y) && !self.isApplyingTransition
} else {
return abs(velocity.y) > abs(velocity.x)
}