diff options
| -rw-r--r-- | services/accessibility/java/com/android/server/accessibility/gestures/TouchExplorer.java | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/services/accessibility/java/com/android/server/accessibility/gestures/TouchExplorer.java b/services/accessibility/java/com/android/server/accessibility/gestures/TouchExplorer.java index be2ad21ee020..d279bd553970 100644 --- a/services/accessibility/java/com/android/server/accessibility/gestures/TouchExplorer.java +++ b/services/accessibility/java/com/android/server/accessibility/gestures/TouchExplorer.java @@ -852,11 +852,9 @@ public class TouchExplorer extends BaseEventStreamTransformation final int pointerIdBits = (1 << pointerId); if (mSendHoverEnterAndMoveDelayed.isPending()) { // If we have not delivered the enter schedule an exit. - if (Flags.resetHoverEventTimerOnActionUp()) { - // We cancel first to reset the time window so that the user has the full amount of - // time to do a multi tap. - mSendHoverEnterAndMoveDelayed.repost(); - } + // We cancel first to reset the time window so that the user has the full amount of + // time to do a multi tap. + mSendHoverEnterAndMoveDelayed.repost(); mSendHoverExitDelayed.post(event, rawEvent, pointerIdBits, policyFlags); } else { // The user is touch exploring so we send events for end. @@ -1601,7 +1599,7 @@ public class TouchExplorer extends BaseEventStreamTransformation + " pointers down."); return; } - if (Flags.resetHoverEventTimerOnActionUp() && mEvents.size() == 0) { + if (mEvents.size() == 0) { return; } // Send an accessibility event to announce the touch exploration start. |