Allow killing modules by deleting sinks and sources

This commit is contained in:
futpib 2018-11-16 00:19:23 +03:00
parent edb9fa9c9f
commit 0e4b685382

View File

@ -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);
}
}