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

Commit 40f6edf2 authored by Svetoslav Ganov's avatar Svetoslav Ganov Committed by Android (Google) Code Review
Browse files

Merge "Touch exploration hover events don't map coordinates correctly on scrollable WebViews."

parents 9e29a4f9 fbb1560d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5707,8 +5707,8 @@ public class WebView extends AbsoluteLayout
            return false;
        }
        WebViewCore.CursorData data = cursorDataNoPosition();
        data.mX = viewToContentX((int) event.getX());
        data.mY = viewToContentY((int) event.getY());
        data.mX = viewToContentX((int) event.getX() + mScrollX);
        data.mY = viewToContentY((int) event.getY() + mScrollY);
        mWebViewCore.sendMessage(EventHub.SET_MOVE_MOUSE, data);
        return true;
    }