From d573c90aefb44d91549857dedc261f744a7fabee Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Fri, 12 Aug 2016 13:51:43 +0300 Subject: [PATCH] Fixed long tap --- drape_frontend/user_event_stream.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/drape_frontend/user_event_stream.cpp b/drape_frontend/user_event_stream.cpp index b6b3700ddd..2402f6c540 100644 --- a/drape_frontend/user_event_stream.cpp +++ b/drape_frontend/user_event_stream.cpp @@ -651,11 +651,6 @@ bool UserEventStream::TouchMove(array const & touches, double timestam isMapTouch = false; break; case STATE_TAP_DETECTION: - if (CheckDrag(touches, kDragThreshold)) - CancelTapDetector(); - else - EndTapDetector(touches[0]); - break; case STATE_WAIT_DOUBLE_TAP: if (CheckDrag(touches, kDragThreshold)) CancelTapDetector();