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

View File

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