Include CLAP_EVENT_SHOULD_RECORD for gestures
Apparently this is what you're supposed to do.
This commit is contained in:
parent
c1ca97c78c
commit
7339e8e956
1 changed files with 2 additions and 3 deletions
|
@ -663,12 +663,11 @@ impl<P: ClapPlugin> Wrapper<P> {
|
|||
OutputParamChangeType::Normal => {
|
||||
CLAP_EVENT_IS_LIVE | CLAP_EVENT_SHOULD_RECORD
|
||||
}
|
||||
// TODO: Should this include `CLAP_EVENT_SHOULD_RECORD`?
|
||||
OutputParamChangeType::BeginGesture => {
|
||||
CLAP_EVENT_IS_LIVE | CLAP_EVENT_BEGIN_ADJUST
|
||||
CLAP_EVENT_IS_LIVE | CLAP_EVENT_SHOULD_RECORD | CLAP_EVENT_BEGIN_ADJUST
|
||||
}
|
||||
OutputParamChangeType::EndGesture => {
|
||||
CLAP_EVENT_IS_LIVE | CLAP_EVENT_END_ADJUST
|
||||
CLAP_EVENT_IS_LIVE | CLAP_EVENT_SHOULD_RECORD | CLAP_EVENT_END_ADJUST
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue