Allow killing modules by deleting sinks and sources
This commit is contained in:
parent
edb9fa9c9f
commit
0e4b685382
|
@ -524,10 +524,18 @@ class Graph extends React.Component {
|
|||
}
|
||||
|
||||
onDeleteNode(selected) {
|
||||
const pai = dgoToPai.get(selected);
|
||||
|
||||
if (selected.type === 'client') {
|
||||
this.props.killClientByIndex(selected.index);
|
||||
} else if (selected.type === 'module') {
|
||||
this.props.unloadModuleByIndex(selected.index);
|
||||
} else if (
|
||||
(selected.type === 'sink' || selected.type === 'source') &&
|
||||
pai &&
|
||||
typeof pai.moduleIndex === 'number'
|
||||
) {
|
||||
this.props.unloadModuleByIndex(pai.moduleIndex);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user