Merge "Reduce handwritingSlop to 2dp" into udc-qpr-dev

This commit is contained in:
Haoyu Zhang
2023-07-26 21:06:19 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -181,7 +181,7 @@ public class ViewConfiguration {
private static final int TOUCH_SLOP = 8;
/** Distance a stylus touch can wander before we think the user is handwriting in dips. */
private static final int HANDWRITING_SLOP = 4;
private static final int HANDWRITING_SLOP = 2;
/**
* Defines the minimum size of the touch target for a scrollbar in dips

View File

@@ -75,7 +75,7 @@ public class HandwritingInitiatorTest {
private static final int HW_BOUNDS_OFFSETS_TOP_PX = 20;
private static final int HW_BOUNDS_OFFSETS_RIGHT_PX = 30;
private static final int HW_BOUNDS_OFFSETS_BOTTOM_PX = 40;
private int mHandwritingSlop = 4;
private int mHandwritingSlop = 2;
private static final Rect sHwArea1;
private static final Rect sHwArea2;