Null sink input field
This commit is contained in:
parent
d608b7de75
commit
919ea70c04
|
@ -1,5 +1,7 @@
|
||||||
/* global document */
|
/* global document */
|
||||||
|
|
||||||
|
const prompt = require('electron-prompt');
|
||||||
|
|
||||||
const {
|
const {
|
||||||
all,
|
all,
|
||||||
allPass,
|
allPass,
|
||||||
|
@ -1437,7 +1439,16 @@ class Graph extends React.PureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
onLoadModuleNullSink() {
|
onLoadModuleNullSink() {
|
||||||
this.props.loadModule('module-null-sink', '');
|
prompt({
|
||||||
|
label: '!! NO SPACES !!',
|
||||||
|
title: 'Null sink name',
|
||||||
|
value: 'nullsink'
|
||||||
|
}).then((r) => {
|
||||||
|
let regex = /^\S*$/;
|
||||||
|
if (regex.test(r)) {
|
||||||
|
this.props.loadModule('module-null-sink', `sink_name="${r}" sink_properties=device.description="${r}"`);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
renderBackground() {
|
renderBackground() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user