From a3ce04e9a561c93034d2a983fdffd39a730d61dc Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Wed, 14 May 2014 09:49:37 +0100 Subject: [PATCH] Increase double-click to edit time --- public/red/ui/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/red/ui/view.js b/public/red/ui/view.js index b3ede6211..614fe7e1b 100644 --- a/public/red/ui/view.js +++ b/public/red/ui/view.js @@ -815,7 +815,7 @@ RED.view = function() { } function nodeMouseUp(d) { - if (mousedown_node == d && clickElapsed > 0 && clickElapsed < 300) { + if (mousedown_node == d && clickElapsed > 0 && clickElapsed < 750) { RED.editor.edit(d); clickElapsed = 0; return;