Merge pull request #4553 from lgrkvst/dev

Allow RED.view.select to select links
This commit is contained in:
Nick O'Leary 2024-02-05 16:28:17 +00:00 committed by GitHub
commit 7ee2b93b10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6247,6 +6247,10 @@ RED.view = (function() {
}
})
}
if (selection.links) {
selectedLinks.clear();
selection.links.forEach(selectedLinks.add);
}
}
}
updateSelection();