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

Commit cb6f29eb authored by Andy Stadler's avatar Andy Stadler Committed by Android Git Automerger
Browse files

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

Merge commit 'a16682b5' into gingerbread-plus-aosp

* commit 'a16682b5':
  Allow touch events when clickable *or* longClickable
parents 7dff9dfd a16682b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5026,7 +5026,7 @@ public class WebView extends AbsoluteLayout

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