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

Commit e72620c2 authored by John Reck's avatar John Reck
Browse files

Fix typo preventing layers from scrolling to top

 Bug: 6215597

Change-Id: Ie58e3aef29444d1c8dea424953d1b8e71ddf770b
parent a08f3e86
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) {