diff options
author | David Robillard <d@drobilla.net> | 2012-05-23 03:33:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-23 03:33:45 +0000 |
commit | 2ea7d01d1878563f863763fc88df23dcbca8536a (patch) | |
tree | 081b17dfa2ddd4d66bbc5c0f6596832071ca07d7 /src/client | |
parent | 5f11a5b2d3e040739bdebada9bab387075e1e177 (diff) | |
download | ingen-2ea7d01d1878563f863763fc88df23dcbca8536a.tar.gz ingen-2ea7d01d1878563f863763fc88df23dcbca8536a.tar.bz2 ingen-2ea7d01d1878563f863763fc88df23dcbca8536a.zip |
Don't save ingen:activity as a persistent property.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4446 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/PortModel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/PortModel.cpp b/src/client/PortModel.cpp index 5298615d..62579c44 100644 --- a/src/client/PortModel.cpp +++ b/src/client/PortModel.cpp @@ -25,6 +25,7 @@ PortModel::on_property(const Raul::URI& uri, const Raul::Atom& value) { if (uri == _uris.ingen_activity) { signal_activity().emit(value); + return; } else { if (uri == _uris.ingen_value) { this->value(value); |