mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
ios: reduce scroll stickiness threshold for user profiles to 32px
This commit is contained in:
@@ -44,7 +44,7 @@ struct StickyScrollView<Content: View>: UIViewRepresentable {
|
||||
withVelocity velocity: CGPoint,
|
||||
targetContentOffset: UnsafeMutablePointer<CGPoint>
|
||||
) {
|
||||
if targetContentOffset.pointee.x < 64 {
|
||||
if targetContentOffset.pointee.x < 32 {
|
||||
targetContentOffset.pointee.x = 0
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user