From 389ba70540c3c418ac8134f783308917743a2e61 Mon Sep 17 00:00:00 2001 From: Extremesecrecy <10959169+extremesecrecy@users.noreply.github.com> Date: Fri, 25 Jul 2025 20:46:11 -0700 Subject: [PATCH] Settings sometime don't start fix Apply immediately so the audio driver is restarted with the chosen devices before saving the settings. --- vite/src/pipedal/SettingsDialog.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vite/src/pipedal/SettingsDialog.tsx b/vite/src/pipedal/SettingsDialog.tsx index cef8440..2a3a1ba 100644 --- a/vite/src/pipedal/SettingsDialog.tsx +++ b/vite/src/pipedal/SettingsDialog.tsx @@ -705,6 +705,10 @@ const SettingsDialog = withStyles( showJackServerSettingsDialog: false, jackServerSettings: jackServerSettings }); + // Apply immediately so the audio driver is + // restarted with the chosen devices before + // saving the settings. + this.model.applyJackServerSettings(jackServerSettings); this.model.setJackServerSettings(jackServerSettings); }} />