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

Commit 145b2faf authored by Alan Viverette's avatar Alan Viverette Committed by Android (Google) Code Review
Browse files

Merge "Reject all touch events in TouchBlockingFrameLayout"

parents 5e503825 764dce2e
Loading
Loading
Loading
Loading
+2 −7
Original line number Original line Diff line number Diff line
@@ -31,12 +31,7 @@ public class TouchBlockingFrameLayout extends FrameLayout {
    }
    }


    @Override
    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
    public boolean dispatchTouchEvent(MotionEvent ev) {
        return true;
        return false;
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        return true;
    }
    }
}
}