mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix ctrl-click on wire whilst already in quick-join
This commit is contained in:
parent
17d3a5840d
commit
426fd499ce
@ -841,7 +841,6 @@ RED.view = (function() {
|
|||||||
if (showLabel !== undefined && !/^link (in|out)$/.test(nn._def.type) && !nn._def.defaults.hasOwnProperty("l")) {
|
if (showLabel !== undefined && !/^link (in|out)$/.test(nn._def.type) && !nn._def.defaults.hasOwnProperty("l")) {
|
||||||
nn.l = showLabel;
|
nn.l = showLabel;
|
||||||
}
|
}
|
||||||
if (!spliceLink) {
|
|
||||||
if (quickAddLink) {
|
if (quickAddLink) {
|
||||||
var drag_line = quickAddLink;
|
var drag_line = quickAddLink;
|
||||||
var src = null,dst,src_port;
|
var src = null,dst,src_port;
|
||||||
@ -944,7 +943,7 @@ RED.view = (function() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
if (spliceLink) {
|
||||||
resetMouseVars();
|
resetMouseVars();
|
||||||
// TODO: DRY - droppable/nodeMouseDown/canvasMouseUp/showQuickAddDialog
|
// TODO: DRY - droppable/nodeMouseDown/canvasMouseUp/showQuickAddDialog
|
||||||
RED.nodes.removeLink(spliceLink);
|
RED.nodes.removeLink(spliceLink);
|
||||||
@ -960,7 +959,7 @@ RED.view = (function() {
|
|||||||
};
|
};
|
||||||
RED.nodes.addLink(link1);
|
RED.nodes.addLink(link1);
|
||||||
RED.nodes.addLink(link2);
|
RED.nodes.addLink(link2);
|
||||||
historyEvent.links = [link1,link2];
|
historyEvent.links = (historyEvent.links || []).concat([link1,link2]);
|
||||||
historyEvent.removedLinks = [spliceLink];
|
historyEvent.removedLinks = [spliceLink];
|
||||||
}
|
}
|
||||||
RED.history.push(historyEvent);
|
RED.history.push(historyEvent);
|
||||||
|
Loading…
Reference in New Issue
Block a user