mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
baaf8167d3
commit
d982d02810
@ -695,8 +695,9 @@ RED.view = function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function nodeMouseUp(d) {
|
function nodeMouseUp(d) {
|
||||||
if (clickElapsed > 0 && clickElapsed < 300) {
|
if (mousedown_node == d && clickElapsed > 0 && clickElapsed < 300) {
|
||||||
RED.editor.edit(d);
|
RED.editor.edit(d);
|
||||||
|
clickElapsed = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
portMouseUp(d, d._def.inputs > 0 ? 1 : 0, 0);
|
portMouseUp(d, d._def.inputs > 0 ? 1 : 0, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user