summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-06-23 17:20:35 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-06-23 17:20:35 -0700
commit8199fcfa84e03568333b6c0bfb88c78d45916a94 (patch)
tree9b8751458f6a79cb11289487d7587c2f058c4bfc
parent116008b0d1efa9705e7e9ea315c9147d7a6958f6 (diff)
downloadsdl_ios-8199fcfa84e03568333b6c0bfb88c78d45916a94.tar.gz
Reduced pan time threshold to a lower value to improve panning delay.
-rw-r--r--SmartDeviceLink/SDLTouchManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLTouchManager.m b/SmartDeviceLink/SDLTouchManager.m
index a27e3da19..b6628469f 100644
--- a/SmartDeviceLink/SDLTouchManager.m
+++ b/SmartDeviceLink/SDLTouchManager.m
@@ -40,7 +40,7 @@ static NSUInteger const kMaximumNumberOfTouches = 2;
- (instancetype)init {
if (self = [super init]) {
- _panTimeThreshold = 150.0f;
+ _panTimeThreshold = 50.0f;
_tapTimeThreshold = 0.4f;
_tapDistanceThreshold = 50.0f;
_previousTouch = SDLTouchZero;