diff options
author | David Robillard <d@drobilla.net> | 2012-04-23 02:26:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-23 02:26:46 +0000 |
commit | 8601ab0fe6c5782cc38de48576eb2f7c4fb2ccef (patch) | |
tree | 687624fd73bf021fb6d1296f1d50b163393ec7f6 /src/client | |
parent | 211beb645d1337f9f7590378681dd891e954740c (diff) | |
download | ingen-8601ab0fe6c5782cc38de48576eb2f7c4fb2ccef.tar.gz ingen-8601ab0fe6c5782cc38de48576eb2f7c4fb2ccef.tar.bz2 ingen-8601ab0fe6c5782cc38de48576eb2f7c4fb2ccef.zip |
Fire signal and update GUI correctly when renaming ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4251 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 2e503100..7647e071 100644 --- a/src/client/PortModel.cpp +++ b/src/client/PortModel.cpp @@ -29,6 +29,7 @@ PortModel::on_property(const Raul::URI& uri, const Raul::Atom& value) } else if (uri == _uris.ingen_activity) { signal_activity().emit(value); } + ObjectModel::on_property(uri, value); } bool |