From f296f423921bbbf04fd9f20d883c0054417ade84 Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Sat, 25 Aug 2018 12:41:29 +0100 Subject: [PATCH] Fix misleading error message We are testing specifically for a selection in an 'audio' track. --- src/effects/nyquist/Nyquist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/nyquist/Nyquist.cpp b/src/effects/nyquist/Nyquist.cpp index 61d12acc6..a116abfc2 100644 --- a/src/effects/nyquist/Nyquist.cpp +++ b/src/effects/nyquist/Nyquist.cpp @@ -786,7 +786,7 @@ bool NyquistEffect::Process() // Nyquist Prompt does not require a selection, but effects do. if (!bOnePassTool && (mNumSelectedChannels == 0)) { - wxString message = _("Cannot run command without a selection."); + wxString message = _("Audio selection required."); Effect::MessageBox(message, wxOK | wxCENTRE | wxICON_EXCLAMATION, _("Nyquist Error")); }