mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Import dragging off-node failed to set dirty flag
This commit is contained in:
parent
19d5709e2a
commit
ec0b5da29c
@ -318,21 +318,7 @@ RED.view = function() {
|
|||||||
}
|
}
|
||||||
if (mouse_mode == RED.state.IMPORT_DRAGGING) {
|
if (mouse_mode == RED.state.IMPORT_DRAGGING) {
|
||||||
RED.keyboard.remove(/* ESCAPE */ 27);
|
RED.keyboard.remove(/* ESCAPE */ 27);
|
||||||
var mousePos = d3.touches(this)[0]||d3.mouse(this);
|
setDirty(true);
|
||||||
if (d3.event.shiftKey && moving_set.length > 1) {
|
|
||||||
mousePos[0] = 20*Math.floor(mousePos[0]/20);
|
|
||||||
mousePos[1] = 20*Math.floor(mousePos[1]/20);
|
|
||||||
}
|
|
||||||
for (var n in moving_set) {
|
|
||||||
var node = moving_set[n];
|
|
||||||
node.n.x = mousePos[0]+node.dx;
|
|
||||||
node.n.y = mousePos[1]+node.dy;
|
|
||||||
if (d3.event.shiftKey && moving_set.length == 1) {
|
|
||||||
node.n.x = 20*Math.floor(node.n.x/20);
|
|
||||||
node.n.y = 20*Math.floor(node.n.y/20);
|
|
||||||
}
|
|
||||||
node.n.dirty = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
redraw();
|
redraw();
|
||||||
// clear mouse event vars
|
// clear mouse event vars
|
||||||
|
Loading…
Reference in New Issue
Block a user