From 29e9d620caa05f0e34da6e5f4d6d3e13715399db Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 29 Jun 2022 00:54:26 +0200 Subject: [PATCH] Fix the sine test tone CLAP category --- plugins/examples/sine/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/examples/sine/src/lib.rs b/plugins/examples/sine/src/lib.rs index aa60ae86..bf0d6e6e 100644 --- a/plugins/examples/sine/src/lib.rs +++ b/plugins/examples/sine/src/lib.rs @@ -197,7 +197,7 @@ impl ClapPlugin for Sine { const CLAP_ID: &'static str = "com.moist-plugins-gmbh.sine"; const CLAP_DESCRIPTION: &'static str = "An optionally MIDI controlled sine test tone"; const CLAP_FEATURES: &'static [ClapFeature] = &[ - ClapFeature::AudioEffect, + ClapFeature::Synthesizer, ClapFeature::Stereo, ClapFeature::Mono, ClapFeature::Utility,