1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-13 16:15:48 +01:00

Fixed bug where once a Nyquist effect is run with Debug it always runs as if Debug was clicked even if the user clicked OK button.

This commit is contained in:
rbdannenberg
2010-11-12 19:03:55 +00:00
parent b81488e1b1
commit 42b7a6ed51

View File

@@ -231,6 +231,8 @@ void EffectNyquist::Parse(wxString line)
if (len >= 2 && tokens[0] == wxT("debugflags")) {
for (int i = 1; i < len; i++) {
// Note: "trace" and "notrace" are overridden by "Debug" and "OK"
// buttons if the plug-in generates a dialog box by using controls
if (tokens[i] == wxT("trace")) {
mDebug = true;
}
@@ -547,9 +549,10 @@ bool EffectNyquist::PromptUser()
return false;
}
if (result == eDebugID) {
/* if (result == eDebugID) {
mDebug = true;
}
} */
mDebug = (result == eDebugID);
return true;
}