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

Commit a16682b5 authored by Andy Stadler's avatar Andy Stadler Committed by Android (Google) Code Review
Browse files

Merge "Allow touch events when clickable *or* longClickable" into gingerbread

parents 269dea1c b34fd1ff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5016,7 +5016,7 @@ public class WebView extends AbsoluteLayout

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        if (mNativeClass == 0 || !isClickable() || !isLongClickable()) {
        if (mNativeClass == 0 || (!isClickable() && !isLongClickable())) {
            return false;
        }