Update JackServerSettingsDialog.tsx

Changed the Apply action so that pressing “Apply” immediately sets and loads the selected devices, allowing the status display to confirm whether the configuration worked
This commit is contained in:
Extremesecrecy
2025-07-25 12:27:16 -07:00
parent b3534e0d1e
commit 1f6efd4da3
@@ -535,7 +535,9 @@ const JackServerSettingsDialog = withStyles(
if (this.state.okEnabled)
{
let s = this.state.jackServerSettings.clone();
s.valid = false;
// Apply immediately so the status display can confirm
// whether the selected devices are working.
s.valid = true;
this.model.setJackServerSettings(s);
this.startStatusTimer();
}