From 16ff3b405334b9dd7418ba5c950dc85b7eb3d83a Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Sat, 28 Apr 2018 19:58:23 +0100 Subject: [PATCH] Nyquist text widget must not fail verification --- src/effects/nyquist/Nyquist.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/effects/nyquist/Nyquist.cpp b/src/effects/nyquist/Nyquist.cpp index 141257918..4bf0bdd13 100644 --- a/src/effects/nyquist/Nyquist.cpp +++ b/src/effects/nyquist/Nyquist.cpp @@ -441,6 +441,12 @@ bool NyquistEffect::SetAutomationParameters(CommandParameters & parms) wxString val; good = parms.Read(ctrl.var, &val); } + else if (ctrl.type == NYQ_CTRL_TEXT) + { + // This "control" is just fixed text (nothing to save or restore), + // so control is always "good". + good = true; + } if (!good) {