aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-scope.lv2/examploscope.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-10-24 18:08:06 -0400
committerDavid Robillard <d@drobilla.net>2015-10-24 18:08:06 -0400
commit295427ca31f17a587d882086b6388dffbb373422 (patch)
treef8ab403980f77d0e4bb7937f8579968b5df69d4b /plugins/eg-scope.lv2/examploscope.c
parentb041b087d18197553a439603cdaf5102a9a73cfa (diff)
downloadlv2-295427ca31f17a587d882086b6388dffbb373422.tar.xz
Support all Object types in plugin protocols
Diffstat (limited to 'plugins/eg-scope.lv2/examploscope.c')
-rw-r--r--plugins/eg-scope.lv2/examploscope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/eg-scope.lv2/examploscope.c b/plugins/eg-scope.lv2/examploscope.c
index 6d1e953..9860f1d 100644
--- a/plugins/eg-scope.lv2/examploscope.c
+++ b/plugins/eg-scope.lv2/examploscope.c
@@ -260,7 +260,7 @@ run(LV2_Handle handle, uint32_t n_samples)
while (!lv2_atom_sequence_is_end(
&self->control->body, self->control->atom.size, ev)) {
// If the event is an atom:Blank object
- if (ev->body.type == self->uris.atom_Blank) {
+ if (lv2_atom_forge_is_object_type(&self->forge, ev->body.type)) {
const LV2_Atom_Object* obj = (const LV2_Atom_Object*)&ev->body;
if (obj->body.otype == self->uris.ui_On) {
// If the object is a ui-on, the UI was activated