diff --git a/vite/src/pipedal/JackServerSettingsDialog.tsx b/vite/src/pipedal/JackServerSettingsDialog.tsx index 2a606f1..1918261 100644 --- a/vite/src/pipedal/JackServerSettingsDialog.tsx +++ b/vite/src/pipedal/JackServerSettingsDialog.tsx @@ -102,10 +102,11 @@ const styles = (theme: Theme) => selectEmpty: { marginTop: theme.spacing(2), }, - inputLabel: { + inputLabel: { backgroundColor: theme.palette.background.paper, paddingLeft: 4, - paddingRight: 4 + paddingRight: 4, + whiteSpace: "nowrap" }, cpuStatusColor: { color: theme.palette.text.secondary, @@ -536,6 +537,7 @@ const JackServerSettingsDialog = withStyles( let s = this.state.jackServerSettings.clone(); s.valid = false; this.model.setJackServerSettings(s); + this.startStatusTimer(); } }; handleOk() { @@ -738,14 +740,8 @@ const JackServerSettingsDialog = withStyles( Latency: {this.state.latencyText}
- {JackHostStatus.getDisplayViewNoCpu("", this.state.jackStatus)} + {JackHostStatus.getDisplayView("", this.state.jackStatus)}
- {!this.state.okEnabled && ( - - Please select all audio settings. - - )}