RESOLVED FIXED 77141
Simplify checking of whether we should rubberband horizontally
https://bugs.webkit.org/show_bug.cgi?id=77141
Summary Simplify checking of whether we should rubberband horizontally
Anders Carlsson
Reported 2012-01-26 14:26:12 PST
Simplify checking of whether we should rubberband horizontally
Attachments
Patch (2.98 KB, patch)
2012-01-26 14:28 PST, Anders Carlsson
aroben: review+
Anders Carlsson
Comment 1 2012-01-26 14:28:22 PST
Adam Roben (:aroben)
Comment 2 2012-01-26 14:30:58 PST
Comment on attachment 124180 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=124180&action=review > Source/WebCore/platform/mac/ScrollAnimatorMac.mm:923 > - if (m_scrollableArea->isHorizontalScrollerPinnedToMinimumPosition() && > - isScrollingLeftAndShouldNotRubberBand(wheelEvent, m_scrollableArea)) > - return false; > - > - if (m_scrollableArea->isHorizontalScrollerPinnedToMaximumPosition() && > - isScrollingRightAndShouldNotRubberBand(wheelEvent, m_scrollableArea)) > + if (pinnedInDirection(-wheelEvent.deltaX(), 0) && > + !shouldRubberBandInHorizontalDirection(wheelEvent, m_scrollableArea)) Do we still need isHorizontalScrollerPinnedToMinimumPosition/isHorizontalScrollerPinnedToMaximumPosition? pinnedInDirection is a confusing function. It takes two deltas, not a direction! What does it all MEAN?
Anders Carlsson
Comment 3 2012-01-26 14:34:26 PST
Note You need to log in before you can comment on or make changes to this bug.