summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeModule.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-02-17 03:41:45 +0000
committerDavid Robillard <d@drobilla.net>2015-02-17 03:41:45 +0000
commitf1c1d019c14ddb184078c79cd5d6a0631a644acd (patch)
tree8f625d85d8983a7fba5b2f2f7a0ec22a12e5d832 /src/gui/NodeModule.cpp
parentfb8f05cdd3bcb7c322d5d67dac009bf668e209df (diff)
downloadingen-f1c1d019c14ddb184078c79cd5d6a0631a644acd.tar.gz
ingen-f1c1d019c14ddb184078c79cd5d6a0631a644acd.tar.bz2
ingen-f1c1d019c14ddb184078c79cd5d6a0631a644acd.zip
Fix display of labels when port is created without.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5581 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r--src/gui/NodeModule.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp
index 40303ad7..c03618cf 100644
--- a/src/gui/NodeModule.cpp
+++ b/src/gui/NodeModule.cpp
@@ -268,8 +268,7 @@ NodeModule::rename()
void
NodeModule::new_port_view(SPtr<const PortModel> port)
{
- Port::create(app(), *this, port,
- app().world()->conf().option("human-names").get<int32_t>());
+ Port::create(app(), *this, port);
port->signal_value_changed().connect(
sigc::bind<0>(sigc::mem_fun(this, &NodeModule::port_value_changed),