Don\'t delay child pressed state in freeform mode

am: a6aea9876e

Change-Id: I68c9d42ca9b3bda6a2ea823db27f8a11046b0e50
This commit is contained in:
Andrii Kulian
2016-07-27 22:01:07 +00:00
committed by android-build-merger

View File

@@ -244,6 +244,11 @@ public class DecorCaptionView extends ViewGroup implements View.OnTouchListener,
return mTouchDispatchList;
}
@Override
public boolean shouldDelayChildPressedState() {
return false;
}
private boolean passedSlop(int x, int y) {
return Math.abs(x - mTouchDownX) > mDragSlop || Math.abs(y - mTouchDownY) > mDragSlop;
}