Rename Nyquist plug-in debug button header

This commit is contained in:
Steve Daulton 2017-05-30 14:25:05 +01:00
parent 2ef243fe60
commit 73d2478d0b
9 changed files with 9 additions and 8 deletions

View File

@ -6,7 +6,7 @@
;categories "http://lv2plug.in/ns/lv2core#MixerPlugin"
;name "Adjustable Fade..."
;manpage "Adjustable_Fade"
;debug false
;debugbutton false
;action "Applying Fade..."
;author "Steve Daulton"
;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -3,7 +3,7 @@
;type process
;name "Crossfade Tracks..."
;manpage "Crossfade_Tracks"
;debug disabled
;debugbutton disabled
;action "Crossfading..."
;preview selection
;author "Steve Daulton"

View File

@ -4,7 +4,7 @@
;preview linear
;name "High Pass Filter..."
;manpage "High_Pass_Filter"
;debug disabled
;debugbutton disabled
;action "Performing High Pass Filter..."
;author "Dominic Mazzoni"
;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -4,7 +4,7 @@
;categories "http://lv2plug.in/ns/lv2core/#DynamicsPlugin"
;name "Limiter..."
;manpage "Limiter"
;debug false
;debugbutton false
;action "Limiting..."
;preview enabled
;author "Steve Daulton"

View File

@ -4,7 +4,7 @@
;preview linear
;name "Low Pass Filter..."
;manpage "Low_Pass_Filter"
;debug disabled
;debugbutton disabled
;action "Performing Low Pass Filter..."
;author "Dominic Mazzoni"
;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -4,7 +4,7 @@
;preview linear
;name "Notch Filter..."
;manpage "Notch_Filter"
;debug false
;debugbutton false
;action "Applying Notch Filter..."
;author "Steve Daulton and Bill Wharrie"
;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -4,6 +4,7 @@
;categories "http://lv2plug.in/ns/lv2core#GeneratorPlugin"
;name "Pluck..."
;manpage "Pluck"
;debugbutton false
;preview linear
;action "Generating pluck sound..."
;info "MIDI values for C notes: 36, 48, 60 [middle C], 72, 84, 96."

View File

@ -5,7 +5,7 @@
;categories "http://lv2plug.in/ns/lv2core#ModulatorPlugin"
;name "Tremolo..."
;manpage "Tremolo"
;debug disabled
;debugbutton disabled
;action "Applying Tremolo..."
;author "Steve Daulton"
;copyright "Released under terms of the GNU General Public License version 2"

View File

@ -1655,7 +1655,7 @@ void NyquistEffect::Parse(const wxString &line)
// TODO: Document.
// Debug button may be disabled for release plug-ins.
if (len >= 2 && tokens[0] == wxT("debug")) {
if (len >= 2 && tokens[0] == wxT("debugbutton")) {
if (tokens[1] == wxT("disabled") || tokens[1] == wxT("false")) {
mEnableDebug = false;
}