update comments

This commit is contained in:
vineyardbovines
2026-03-03 10:47:53 -05:00
committed by Samuel Newman
parent 32c12ab867
commit 5442a5ea8d
2 changed files with 6 additions and 5 deletions
@@ -77,8 +77,9 @@ class ExpoScrollForwarderView: ExpoView, UIGestureRecognizerDelegate {
if sender.state == .began {
// Use max(0) so gesture deltas compute correctly, but don't mutate
// contentOffset snapping it to 0 causes a visible jump on profiles
// with large headers where the user is scrolled into negative territory.
// contentOffset
// snapping it to 0 causes a visible jump on profiles with large headers
// where the user is scrolled into negative territory. - sfp
self.initialOffset = max(sv.contentOffset.y, 0)
}