diff options
author | David Robillard <d@drobilla.net> | 2011-02-19 05:19:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-02-19 05:19:43 +0000 |
commit | db6f76316b6ec7c9ab32f7efd5dce81a976cba82 (patch) | |
tree | ba1506b65332943cd5e938fe1fc928c409429c38 /src/gui | |
parent | 75df50e0050b9701179a423032077c24fb794d5c (diff) | |
download | ingen-db6f76316b6ec7c9ab32f7efd5dce81a976cba82.tar.gz ingen-db6f76316b6ec7c9ab32f7efd5dce81a976cba82.tar.bz2 ingen-db6f76316b6ec7c9ab32f7efd5dce81a976cba82.zip |
Show human name instead of symbol in node control window (fix ticket #637).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2995 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/NodeControlWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/NodeControlWindow.cpp b/src/gui/NodeControlWindow.cpp index 933bc69a..548f69c1 100644 --- a/src/gui/NodeControlWindow.cpp +++ b/src/gui/NodeControlWindow.cpp @@ -45,7 +45,7 @@ NodeControlWindow::NodeControlWindow(SharedPtr<NodeModel> node, uint32_t poly) property_resizable() = true; set_border_width(5); - set_title(_node->path().chop_scheme() + " Controls - Ingen"); + set_title(_node->plugin_model()->human_name() + " - Ingen"); Glib::RefPtr<Gnome::Glade::Xml> xml = GladeFactory::new_glade_reference("warehouse_win"); xml->get_widget_derived("control_panel_vbox", _control_panel); |