Send individual parameter changes for VST3 plugins

This commit is contained in:
Robbert van der Helm
2023-01-11 16:59:21 +01:00
parent adb49cb6d1
commit e5a26ac199
7 changed files with 55 additions and 49 deletions

View File

@@ -475,7 +475,7 @@ enum NestedParams {
field: syn::Ident,
group: Option<syn::LitStr>,
},
/// The nested struct's parameters will get an ID prefix. The original parmaeter with ID `foo`
/// The nested struct's parameters will get an ID prefix. The original parameter with ID `foo`
/// will become `{id_prefix}_foo`.
Prefixed {
field: syn::Ident,
@@ -492,7 +492,7 @@ enum NestedParams {
}
impl NestedParams {
/// Constrruct an iterator that iterates over all parmaeters of a nested parameter object. This
/// Constrruct an iterator that iterates over all parameters of a nested parameter object. This
/// takes ID prefixes and suffixes into account, and prefixes the group to the parameter's
/// existing groups if the `group` attribute on the `#[nested]` macro was specified.
fn param_map_tokens(&self) -> proc_macro2::TokenStream {