1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-27 15:50:10 +01:00

Disable Debug button for some Nyquist effects

Plug-ins changed: adjustable-fade.ny crossfadetracks.ny highpass.ny limiter.ny
lowpass.ny notch.ny tremolo.ny
This commit is contained in:
Steve Daulton
2017-05-22 12:59:39 +01:00
parent 04ba10a1c3
commit 9c6bfd73ac
7 changed files with 12 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
;type process
;name "Crossfade Tracks..."
;manpage "Crossfade_Tracks"
;debug disabled
;action "Crossfading..."
;preview selection
;author "Steve Daulton"
@@ -70,4 +71,6 @@ audio clip, fade in, otherwise fade out."
(setf out-dist (min out-dist (abs (- end (second (nth i clips)))))))
(if (< in-dist out-dist) 'in 'out)))
(crossfade type direction curve)
(if (< (length (get '*selection* 'tracks)) 2)
"Error.\nSelect 2 (or more) tracks to crossfade."
(crossfade type direction curve))