From 871f4c2d58acca384a413275ec5576196539c65c Mon Sep 17 00:00:00 2001 From: Extremesecrecy <10959169+extremesecrecy@users.noreply.github.com> Date: Sat, 26 Jul 2025 14:49:02 -0700 Subject: [PATCH] Persist fix Revert any applied settings by restoring the persisted configuration and re-applying it. --- vite/src/pipedal/JackServerSettingsDialog.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vite/src/pipedal/JackServerSettingsDialog.tsx b/vite/src/pipedal/JackServerSettingsDialog.tsx index 3afe0ea..8fd945c 100644 --- a/vite/src/pipedal/JackServerSettingsDialog.tsx +++ b/vite/src/pipedal/JackServerSettingsDialog.tsx @@ -618,6 +618,9 @@ const JackServerSettingsDialog = withStyles( const handleClose = () => { if (this.originalJackServerSettings) { + // Revert any applied settings by restoring the + // persisted configuration and re-applying it. + this.model.applyJackServerSettings(this.originalJackServerSettings); this.model.setJackServerSettings(this.originalJackServerSettings); }