Ok handler

Set settings before closing the page.
This commit is contained in:
Extremesecrecy
2025-07-27 08:46:25 -07:00
parent 8b4bd76be1
commit ec520cdbf5
@@ -563,7 +563,12 @@ const JackServerSettingsDialog = withStyles(
s.valid = true;
// Accept the new settings so handleClose doesn't revert
this.originalJackServerSettings = undefined;
this.props.onApply(s);
// Apply the new settings immediately and persist them.
this.model.applyJackServerSettings(s);
this.model.setJackServerSettings(s);
if (this.props.onApply) {
this.props.onApply(s);
}