summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeControlWindow.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-06 22:41:50 +0000
committerDavid Robillard <d@drobilla.net>2009-06-06 22:41:50 +0000
commit9851334e79a585775d9e57e270fc00f497eaaf84 (patch)
treea70762e4c53b74a6e91c70245e492273631b7b63 /src/gui/NodeControlWindow.cpp
parent5e6d421dac80359477a926456a56a7772bfc0945 (diff)
downloadingen-9851334e79a585775d9e57e270fc00f497eaaf84.tar.gz
ingen-9851334e79a585775d9e57e270fc00f497eaaf84.tar.bz2
ingen-9851334e79a585775d9e57e270fc00f497eaaf84.zip
Fix window titles.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2093 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NodeControlWindow.cpp')
-rw-r--r--src/gui/NodeControlWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/NodeControlWindow.cpp b/src/gui/NodeControlWindow.cpp
index 167d7255..65ab5f21 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().str() + " Controls");
+ set_title(_node->path().chop_scheme() + " Controls - Ingen");
Glib::RefPtr<Gnome::Glade::Xml> xml = GladeFactory::new_glade_reference("warehouse_win");
xml->get_widget_derived("control_panel_vbox", _control_panel);
@@ -73,7 +73,7 @@ NodeControlWindow::NodeControlWindow(SharedPtr<NodeModel> node, ControlPanel* pa
property_resizable() = true;
set_border_width(5);
- set_title(_node->path().str() + " Controls");
+ set_title(_node->path().chop_scheme() + " Controls - Ingen");
_control_panel->reparent(*this);