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
This commit is contained in:
Extremesecrecy
2025-07-23 21:32:54 -07:00
parent 3c20668b07
commit d98c5c1ae0
@@ -641,6 +641,12 @@ const JackServerSettingsDialog = withStyles(
color="textSecondary">
Latency: {this.state.latencyText}
</Typography>
{!this.state.okEnabled && (
<Typography display="block" variant="caption" color="error"
style={{ textAlign: "left", marginLeft: 24 }}>
Please select all audio settings.
</Typography>
)}
</DialogContent>
<DialogActions>