mirror of https://github.com/M66B/FairEmail.git
Fixed scroll in 3-col mode (2)
This commit is contained in:
parent
3c8773c915
commit
4d0884e8dd
|
@ -85,4 +85,19 @@ public class DrawerLayoutEx extends DrawerLayout {
|
||||||
}
|
}
|
||||||
return super.onInterceptTouchEvent(ev);
|
return super.onInterceptTouchEvent(ev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean dispatchGenericMotionEvent(MotionEvent ev) {
|
||||||
|
if (isLocked()) {
|
||||||
|
View content = getChildAt(0);
|
||||||
|
Rect rect = new Rect();
|
||||||
|
content.getHitRect(rect);
|
||||||
|
rect.left += content.getPaddingLeft();
|
||||||
|
rect.right -= content.getPaddingRight();
|
||||||
|
if (rect.contains((int) ev.getX(), (int) ev.getY()))
|
||||||
|
return content.dispatchGenericMotionEvent(ev);
|
||||||
|
}
|
||||||
|
return super.dispatchGenericMotionEvent(ev);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue