File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -1686,6 +1686,10 @@ public void super_computeScroll() {
16861686 WebView .super .computeScroll ();
16871687 }
16881688
1689+ public boolean super_onHoverEvent (MotionEvent event ) {
1690+ return WebView .super .onHoverEvent (event );
1691+ }
1692+
16891693 public boolean super_performAccessibilityAction (int action , Bundle arguments ) {
16901694 return WebView .super .performAccessibilityAction (action , arguments );
16911695 }
Original file line number Diff line number Diff line change @@ -5711,6 +5711,7 @@ public boolean onHoverEvent(MotionEvent event) {
57115711 int x = viewToContentX ((int ) event .getX () + getScrollX ());
57125712 int y = viewToContentY ((int ) event .getY () + getScrollY ());
57135713 mWebViewCore .sendMessage (EventHub .SET_MOVE_MOUSE , x , y );
5714+ mWebViewPrivate .super_onHoverEvent (event );
57145715 return true ;
57155716 }
57165717
You can’t perform that action at this time.
0 commit comments