diff options
author | David Robillard <d@drobilla.net> | 2012-12-22 19:47:26 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-12-22 19:47:26 +0000 |
commit | 55731e738041c0b51a9a759dbf3d2347788a552d (patch) | |
tree | dacc931627007d880123c2d529dccec93c10d4b0 /src | |
parent | 7b5734c00e9ec226932e4c88d759dc8fb37a2d9c (diff) | |
download | ingen-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
Diffstat (limited to 'src')
-rw-r--r-- | src/AtomReader.cpp | 1 |
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); |