summaryrefslogtreecommitdiffstats
path: root/src/libs/client/Store.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-19 06:29:58 +0000
committerDavid Robillard <d@drobilla.net>2007-09-19 06:29:58 +0000
commitcfbcb812e96b740e16510bf736cef688d8ebe986 (patch)
tree8fb96f95c1adb87116bfcd6439897e6970948456 /src/libs/client/Store.cpp
parent36b22fe2bea643d7d4ff69764016ae5be9c6de69 (diff)
downloadingen-cfbcb812e96b740e16510bf736cef688d8ebe986.tar.gz
ingen-cfbcb812e96b740e16510bf736cef688d8ebe986.tar.bz2
ingen-cfbcb812e96b740e16510bf736cef688d8ebe986.zip
Fix LV2 dynamic poly crash.
Update client-side patch model on polyphony change. git-svn-id: http://svn.drobilla.net/lad/ingen@726 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/Store.cpp')
-rw-r--r--src/libs/client/Store.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libs/client/Store.cpp b/src/libs/client/Store.cpp
index 75eb943b..84528d00 100644
--- a/src/libs/client/Store.cpp
+++ b/src/libs/client/Store.cpp
@@ -44,6 +44,7 @@ Store::Store(SharedPtr<EngineInterface> engine, SharedPtr<SigClientInterface> em
emitter->new_port_sig.connect(sigc::mem_fun(this, &Store::new_port_event));
emitter->patch_enabled_sig.connect(sigc::mem_fun(this, &Store::patch_enabled_event));
emitter->patch_disabled_sig.connect(sigc::mem_fun(this, &Store::patch_disabled_event));
+ emitter->patch_polyphony_sig.connect(sigc::mem_fun(this, &Store::patch_polyphony_event));
emitter->patch_cleared_sig.connect(sigc::mem_fun(this, &Store::patch_cleared_event));
emitter->connection_sig.connect(sigc::mem_fun(this, &Store::connection_event));
emitter->disconnection_sig.connect(sigc::mem_fun(this, &Store::disconnection_event));
@@ -451,6 +452,15 @@ Store::patch_disabled_event(const Path& path)
patch->disable();
}
+
+void
+Store::patch_polyphony_event(const Path& path, uint32_t poly)
+{
+ SharedPtr<PatchModel> patch = PtrCast<PatchModel>(object(path));
+ if (patch)
+ patch->poly(poly);
+}
+
void
Store::patch_cleared_event(const Path& path)