summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeModule.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-06-12 21:46:22 +0000
committerDavid Robillard <d@drobilla.net>2012-06-12 21:46:22 +0000
commit071e36b69b5bcc203f70179580c8bed924b7305b (patch)
tree6af0c15841b20ae8ca5d020a7423d80a7c432fc3 /src/gui/NodeModule.cpp
parent9923f2bc2a0731c111dbf614223ed81dee3e91f5 (diff)
downloadingen-071e36b69b5bcc203f70179580c8bed924b7305b.tar.gz
ingen-071e36b69b5bcc203f70179580c8bed924b7305b.tar.bz2
ingen-071e36b69b5bcc203f70179580c8bed924b7305b.zip
Add "expose" (to parent) operation for ports.
Partially implments #39. Export all the way to root has a few issues, I am considering this functionality good enough for now. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4496 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r--src/gui/NodeModule.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp
index e6bbee67..5ee75584 100644
--- a/src/gui/NodeModule.cpp
+++ b/src/gui/NodeModule.cpp
@@ -139,14 +139,9 @@ NodeModule::show_human_names(bool b)
{
const URIs& uris = app().uris();
- if (b && node()->plugin()) {
- const Raul::Atom& name_property = node()->get_property(uris.lv2_name);
- if (name_property.type() == uris.forge.String)
- set_label(name_property.get_string());
- else
- set_label(node()->plugin_model()->human_name().c_str());
+ if (b) {
+ set_label(node()->label().c_str());
} else {
- b = false;
set_label(node()->symbol().c_str());
}