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

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

am cb6f29eb: am a16682b5: Merge "Allow touch events when clickable *or*...

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

Merge commit 'cb6f29eb'

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

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