mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-06 17:13:49 +01:00
Fix empty string a no-op for all Nyquist plug-ins
Previously an empty string would preven ;type process plug-ins from continuing to other tracks.
This commit is contained in:
@@ -1353,6 +1353,8 @@ bool NyquistEffect::ProcessOne()
|
||||
wxString msg = NyquistToWxString(nyx_get_string());
|
||||
if (!msg.IsEmpty()) // Empty string may be used as a No-Op return value.
|
||||
Effect::MessageBox(msg);
|
||||
else
|
||||
return true;
|
||||
|
||||
// True if not process type.
|
||||
// If not returning audio from process effect,
|
||||
|
||||
Reference in New Issue
Block a user