From 728f510e8c542db2907dcd439a9ab99d07282220 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 14 Sep 2011 22:49:22 +0000 Subject: Support lv2:sampleRate controls (mostly) correctly. Fix initial control port values (was always 0.0). Fix numeric values in control window. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3460 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/ClientStore.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/client/ClientStore.cpp') diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp index 2d7f0a4b..e1ebd97c 100644 --- a/src/client/ClientStore.cpp +++ b/src/client/ClientStore.cpp @@ -401,6 +401,10 @@ ClientStore::delta(const URI& uri, void ClientStore::set_property(const URI& subject_uri, const URI& predicate, const Atom& value) { + if (subject_uri == _uris->ingen_engine) { + LOG(info) << "Engine property " << predicate << " = " << value << endl; + return; + } SharedPtr subject = _resource(subject_uri); if (subject) { subject->set_property(predicate, value); -- cgit v1.2.1