From 256e40acdc91cce244c5dfea82bde98303ddc475 Mon Sep 17 00:00:00 2001 From: Mimiste Date: Mon, 18 Apr 2016 19:44:00 +0200 Subject: [PATCH] 1 Second touch for the drag and drop Changed the timer duration to 1 second to initiate the drag and drop --- Limelight/Input/StreamView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/Input/StreamView.m b/Limelight/Input/StreamView.m index 9886d7de..70c425e8 100644 --- a/Limelight/Input/StreamView.m +++ b/Limelight/Input/StreamView.m @@ -53,7 +53,7 @@ touchLocation = [touch locationInView:self]; touchMoved = false; if ([[event allTouches] count] == 1 && !isDragging) { - dragTimer = [NSTimer scheduledTimerWithTimeInterval:2.0 + dragTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(onDragStart:) userInfo:nil