diff options
author | David Robillard <d@drobilla.net> | 2013-02-24 01:46:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-24 01:46:15 +0000 |
commit | 4ff4c69ff0d22e88b8799f36f277de263232de4f (patch) | |
tree | 1fa73050181683a01799a1afea246b3d463f9699 /ingen | |
parent | c09203d0caa4695bec58a8bf84e31ff69de5eb61 (diff) | |
download | ingen-4ff4c69ff0d22e88b8799f36f277de263232de4f.tar.gz ingen-4ff4c69ff0d22e88b8799f36f277de263232de4f.tar.bz2 ingen-4ff4c69ff0d22e88b8799f36f277de263232de4f.zip |
Don't send port values to UI for audio ports (fix Calf crash).
Don't set ingen:value property for non-control ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5081 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/client/BlockModel.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ingen/client/BlockModel.hpp b/ingen/client/BlockModel.hpp index b5db2b0d..2a1a6f5d 100644 --- a/ingen/client/BlockModel.hpp +++ b/ingen/client/BlockModel.hpp @@ -53,6 +53,7 @@ public: typedef std::vector< SPtr<const PortModel> > Ports; SPtr<const PortModel> get_port(const Raul::Symbol& symbol) const; + SPtr<const PortModel> get_port(uint32_t index) const; Node* port(uint32_t index) const; |