mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Enable RED.view.select to select group by id
This commit is contained in:
parent
ce6a4845f2
commit
90e32f52c9
@ -274,7 +274,7 @@ var RED = (function() {
|
||||
if (nodeToShow) {
|
||||
RED.view.reveal(nodeToShow.id)
|
||||
window.location.hash = currentHash
|
||||
RED.view.select({ nodes: [nodeToShow] })
|
||||
RED.view.select(nodeToShow.id)
|
||||
if (showEditDialog) {
|
||||
RED.editor.editGroup(nodeToShow)
|
||||
}
|
||||
|
@ -6114,6 +6114,13 @@ RED.view = (function() {
|
||||
selectedNode.dirty = true;
|
||||
movingSet.clear();
|
||||
movingSet.add(selectedNode);
|
||||
} else {
|
||||
selectedNode = RED.nodes.group(selection);
|
||||
if (selectedNode) {
|
||||
movingSet.clear();
|
||||
selectedGroups.clear()
|
||||
selectedGroups.add(selectedNode)
|
||||
}
|
||||
}
|
||||
} else if (selection) {
|
||||
if (selection.nodes) {
|
||||
|
Loading…
Reference in New Issue
Block a user