From 32957c222f413c00cffd180128d0dd325043afa8 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 28 Jan 2023 23:23:35 +0100 Subject: [PATCH] Add a missing category feature to the sine example --- plugins/examples/sine/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/examples/sine/src/lib.rs b/plugins/examples/sine/src/lib.rs index 1a5b286d..e6c6a4a4 100644 --- a/plugins/examples/sine/src/lib.rs +++ b/plugins/examples/sine/src/lib.rs @@ -202,6 +202,7 @@ impl ClapPlugin for Sine { const CLAP_MANUAL_URL: Option<&'static str> = Some(Self::URL); const CLAP_SUPPORT_URL: Option<&'static str> = None; const CLAP_FEATURES: &'static [ClapFeature] = &[ + ClapFeature::Instrument, ClapFeature::Synthesizer, ClapFeature::Stereo, ClapFeature::Mono,