1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix select-all action in main view

This commit is contained in:
Nick O'Leary 2019-06-07 14:35:22 +01:00
parent 6f08bd6fc5
commit 460e3ad395
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9

View File

@ -1412,11 +1412,11 @@ RED.view = (function() {
return; return;
} }
} }
} if (!n.selected) {
if (!n.selected) { n.selected = true;
n.selected = true; n.dirty = true;
n.dirty = true; moving_set.push({n:n});
moving_set.push({n:n}); }
} }
}); });
if (mouse_mode !== RED.state.SELECTING_NODE && activeSubflow) { if (mouse_mode !== RED.state.SELECTING_NODE && activeSubflow) {