summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-22 19:47:26 +0000
committerDavid Robillard <d@drobilla.net>2012-12-22 19:47:26 +0000
commit55731e738041c0b51a9a759dbf3d2347788a552d (patch)
treedacc931627007d880123c2d529dccec93c10d4b0
parent7b5734c00e9ec226932e4c88d759dc8fb37a2d9c (diff)
downloadingen-55731e738041c0b51a9a759dbf3d2347788a552d.tar.gz
ingen-55731e738041c0b51a9a759dbf3d2347788a552d.tar.bz2
ingen-55731e738041c0b51a9a759dbf3d2347788a552d.zip
Fix set messages via atom interface (e.g. port controls in LV2 patcher UI)
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4887 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--src/AtomReader.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AtomReader.cpp b/src/AtomReader.cpp
index f7b95177..c12ce3d7 100644
--- a/src/AtomReader.cpp
+++ b/src/AtomReader.cpp
@@ -107,6 +107,7 @@ AtomReader::is_message(URIs& uris, const LV2_Atom* msg)
return (obj->body.otype == uris.patch_Get ||
obj->body.otype == uris.patch_Delete ||
obj->body.otype == uris.patch_Put ||
+ obj->body.otype == uris.patch_Set ||
obj->body.otype == uris.patch_Patch ||
obj->body.otype == uris.patch_Move ||
obj->body.otype == uris.patch_Response);