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

Merge pull request #3267 from node-red-hitachi/fix-link-target-select

fix to show link target when selected
This commit is contained in:
Nick O'Leary 2021-11-22 23:20:04 +00:00 committed by GitHub
commit 279fcb7c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4421,6 +4421,9 @@ RED.view = (function() {
n.selected = true;
n.dirty = true;
movingSet.add(n);
if (targets.length === 1) {
RED.view.reveal(n.id);
}
});
updateSelection();
redraw();