From 3894b73fc1f557d966c376d116494ce4f7066f27 Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 29 Nov 2023 19:31:31 -0500 Subject: [PATCH] Delay extendable, not just with factors (#32) Addresses https://github.com/surge-synthesizer/surge/issues/7349#issuecomment-1832906752 --- include/sst/effects/Delay.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/sst/effects/Delay.h b/include/sst/effects/Delay.h index 5b0d569..ba00572 100644 --- a/include/sst/effects/Delay.h +++ b/include/sst/effects/Delay.h @@ -116,6 +116,7 @@ template struct Delay : core::EffectTemplateBase return pmd() .asPercent() .withName("Crossfeed") + .extendable() .withExtendFactors(2.f, -1.f) .withDefault(0.f); @@ -128,6 +129,7 @@ template struct Delay : core::EffectTemplateBase .withLinearScaleFormatting("cents", 100.f) .withType(pmd::FLOAT) .withRange(0.f, 2.f) + .extendable() .withExtendFactors(6.f) .withDefault(0.f);