Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4da5c4ac authored by John Reck's avatar John Reck Committed by Android (Google) Code Review
Browse files

Merge "Fix typo preventing layers from scrolling to top"

parents ecc395a5 e72620c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3877,7 +3877,7 @@ public final class WebViewClassic implements WebViewProvider, WebViewProvider.Sc
    private void scrollLayerTo(int x, int y) {
        int dx = mScrollingLayerRect.left - x;
        int dy = mScrollingLayerRect.top - y;
        if (dx == 0 && y == 0) {
        if (dx == 0 && dy == 0) {
            return;
        }
        if (mSelectingText) {