From 494a80be70da3ffd68418c7b8c5ffdd4d3d7d070 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 1 Feb 2014 01:04:32 +0000 Subject: Always monitor sequence ports that are explicitly monitored. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5328 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/PortImpl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/server/PortImpl.cpp b/src/server/PortImpl.cpp index aed67ec3..c9afd307 100644 --- a/src/server/PortImpl.cpp +++ b/src/server/PortImpl.cpp @@ -380,7 +380,9 @@ PortImpl::monitor(Context& context, bool send_now) _frames_since_monitor += context.nframes(); const bool time_to_send = send_now || _frames_since_monitor >= period; - if (!time_to_send) { + const bool is_sequence = (_type.id() == PortType::ATOM && + _buffer_type == _bufs.uris().atom_Sequence); + if (!time_to_send && !(is_sequence && _monitored)) { return; } -- cgit v1.2.1