diff options
author | David Robillard <d@drobilla.net> | 2015-10-25 18:16:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-25 18:16:15 +0000 |
commit | 70fe3489c52339e0f9b38241b1ebe56470b9b210 (patch) | |
tree | 4196f951d1b3bc7e929fa7c442d2cc7268fa3a5f /src/server | |
parent | 1a33b800ac6245f59c99d76438feee8a21f04043 (diff) | |
download | ingen-70fe3489c52339e0f9b38241b1ebe56470b9b210.tar.gz ingen-70fe3489c52339e0f9b38241b1ebe56470b9b210.tar.bz2 ingen-70fe3489c52339e0f9b38241b1ebe56470b9b210.zip |
Fix explicit sequence port monitoring
Patch from Robin Gareus.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5786 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/PortImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/PortImpl.cpp b/src/server/PortImpl.cpp index 89b99b4c..13eaa8e2 100644 --- a/src/server/PortImpl.cpp +++ b/src/server/PortImpl.cpp @@ -426,7 +426,7 @@ PortImpl::monitor(Context& context, bool send_now) const bool time_to_send = send_now || _frames_since_monitor >= period; const bool is_sequence = (_type.id() == PortType::ATOM && _buffer_type == _bufs.uris().atom_Sequence); - if (!time_to_send && (!is_sequence || _monitored || buffer(0)->value())) { + if (!time_to_send && !(is_sequence && _monitored) && (!is_sequence && buffer(0)->value())) { return; } |