From e1191af1cf00cd61e8dbe713afa93b481d30339a Mon Sep 17 00:00:00 2001 From: Denis Date: Fri, 11 Jul 2014 13:32:20 +0400 Subject: [PATCH] Changed timeout time for two finger tap. --- .../src/net/osmand/plus/helpers/SimpleTwoFingerTapDetector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/helpers/SimpleTwoFingerTapDetector.java b/OsmAnd/src/net/osmand/plus/helpers/SimpleTwoFingerTapDetector.java index 092eb3f65e..db8af6484c 100644 --- a/OsmAnd/src/net/osmand/plus/helpers/SimpleTwoFingerTapDetector.java +++ b/OsmAnd/src/net/osmand/plus/helpers/SimpleTwoFingerTapDetector.java @@ -7,7 +7,7 @@ import android.view.ViewConfiguration; * Created by Barsik on 24.06.2014. */ public abstract class SimpleTwoFingerTapDetector { - private static final int TIMEOUT = ViewConfiguration.getDoubleTapTimeout() + 100; + private static final int TIMEOUT = ViewConfiguration.getTapTimeout() + 100; private long mFirstDownTime = 0; private byte mTwoFingerTapCount = 0; private MotionEvent firstEvent = null;