From 1f6efd4da3bb6a612428c43852af5b479c73c865 Mon Sep 17 00:00:00 2001 From: Extremesecrecy <10959169+extremesecrecy@users.noreply.github.com> Date: Fri, 25 Jul 2025 12:27:16 -0700 Subject: [PATCH] Update JackServerSettingsDialog.tsx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- vite/src/pipedal/JackServerSettingsDialog.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vite/src/pipedal/JackServerSettingsDialog.tsx b/vite/src/pipedal/JackServerSettingsDialog.tsx index 1918261..b389ac6 100644 --- a/vite/src/pipedal/JackServerSettingsDialog.tsx +++ b/vite/src/pipedal/JackServerSettingsDialog.tsx @@ -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(); }