From 48f067a355f4b23bfbd67f18ca32ede3b6497ab4 Mon Sep 17 00:00:00 2001 From: "james.k.crook@gmail.com" Date: Mon, 27 Oct 2014 19:07:50 +0000 Subject: [PATCH] Removed optional control fields. --- plug-ins/SpectralEditMulti.ny | 3 --- plug-ins/SpectralEditParametricEQ.ny | 2 -- plug-ins/SpectralEditShelves.ny | 2 -- 3 files changed, 7 deletions(-) diff --git a/plug-ins/SpectralEditMulti.ny b/plug-ins/SpectralEditMulti.ny index 63b40a621..ef928c893 100644 --- a/plug-ins/SpectralEditMulti.ny +++ b/plug-ins/SpectralEditMulti.ny @@ -4,9 +4,6 @@ ;name "Spectral edit multi tool" ;action "Calculating..." -;control control-f0 "Low Frequency" real "" 4000 0 20000 -;control control-f1 "High Frequency" real "" 4000 0 20000 - (defun wet (sig) (cond ((not (or *f0* *f1*)) (throw 'error-message "Please select frequencies")) diff --git a/plug-ins/SpectralEditParametricEQ.ny b/plug-ins/SpectralEditParametricEQ.ny index ff1a6bce3..d17f4c55d 100644 --- a/plug-ins/SpectralEditParametricEQ.ny +++ b/plug-ins/SpectralEditParametricEQ.ny @@ -5,8 +5,6 @@ ;action "Calculating..." ;control control-gain "Gain (dB)" real "" 0 -24 24 -;control control-f0 "Low Frequency" real "" 4000 0 20000 -;control control-f1 "High Frequency" real "" 4000 0 20000 (defun wet (sig gain) (cond diff --git a/plug-ins/SpectralEditShelves.ny b/plug-ins/SpectralEditShelves.ny index ec855c429..d6bbda5cc 100644 --- a/plug-ins/SpectralEditShelves.ny +++ b/plug-ins/SpectralEditShelves.ny @@ -5,8 +5,6 @@ ;action "Calculating..." ;control control-gain "Gain (dB)" real "" 0 -24 24 -;control control-f0 "Low Frequency" real "" 4000 0 20000 -;control control-f1 "High Frequency" real "" 4000 0 20000 (defun mid-shelf (sig lf hf gain) "Combines high shelf and low shelf filters"