mirror of https://github.com/M66B/FairEmail.git
Single finger swipe
This commit is contained in:
parent
7cfb16b08d
commit
ad9199df68
|
@ -39,6 +39,8 @@ public class SwipeListener implements View.OnTouchListener {
|
|||
public boolean onFling(MotionEvent me1, MotionEvent me2, float vx, float vy) {
|
||||
if (me1 == null || me2 == null)
|
||||
return false;
|
||||
if (me1.getPointerCount() > 1 || me2.getPointerCount() > 1)
|
||||
return false;
|
||||
|
||||
boolean consumed = false;
|
||||
int dx = Math.round(me2.getX() - me1.getX());
|
||||
|
|
Loading…
Reference in New Issue