diff options
author | David Robillard <d@drobilla.net> | 2008-09-29 18:19:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-29 18:19:17 +0000 |
commit | 3168e388d0a951cf665696b970eb5bb354fbb740 (patch) | |
tree | aa2eb0c1887d2d315085944607b66ec8470a4a65 /src/libs/engine/PortImpl.cpp | |
parent | 95b1e3fe89477fbb6710d30ac183fab7d8238c14 (diff) | |
download | ingen-3168e388d0a951cf665696b970eb5bb354fbb740.tar.gz ingen-3168e388d0a951cf665696b970eb5bb354fbb740.tar.bz2 ingen-3168e388d0a951cf665696b970eb5bb354fbb740.zip |
More context extension work.
Clicking the input port on bang in ingen while in edit mode will now send a message to the bang plugin in the message context.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1537 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/PortImpl.cpp')
-rw-r--r-- | src/libs/engine/PortImpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/engine/PortImpl.cpp b/src/libs/engine/PortImpl.cpp index 9b609323..3eac65ca 100644 --- a/src/libs/engine/PortImpl.cpp +++ b/src/libs/engine/PortImpl.cpp @@ -48,6 +48,7 @@ PortImpl::PortImpl(NodeImpl* const node, , _broadcast(false) , _set_by_user(false) , _last_broadcasted_value(_value.type() == Atom::FLOAT ? _value.get_float() : 0.0f) // default? + , _context(Context::AUDIO) , _buffers(new Raul::Array<Buffer*>(poly)) { assert(node != NULL); |