From d98c5c1ae0b843c18a5460c12aa30c01f138f141 Mon Sep 17 00:00:00 2001
From: Extremesecrecy <10959169+extremesecrecy@users.noreply.github.com>
Date: Wed, 23 Jul 2025 21:32:54 -0700
Subject: [PATCH] Update JackServerSettingsDialog.tsx
Added a user-facing error hint in the audio configuration dialog that prompts users to select all audio settings when the OK button is disabled
---
vite/src/pipedal/JackServerSettingsDialog.tsx | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/vite/src/pipedal/JackServerSettingsDialog.tsx b/vite/src/pipedal/JackServerSettingsDialog.tsx
index b9e764a..f2c88f3 100644
--- a/vite/src/pipedal/JackServerSettingsDialog.tsx
+++ b/vite/src/pipedal/JackServerSettingsDialog.tsx
@@ -641,6 +641,12 @@ const JackServerSettingsDialog = withStyles(
color="textSecondary">
Latency: {this.state.latencyText}
+ {!this.state.okEnabled && (
+
+ Please select all audio settings.
+
+ )}