summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchWindow.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/PatchWindow.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/PatchWindow.cpp')
-rw-r--r--src/gui/PatchWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/PatchWindow.cpp b/src/gui/PatchWindow.cpp
index af651e34..31aa11bf 100644
--- a/src/gui/PatchWindow.cpp
+++ b/src/gui/PatchWindow.cpp
@@ -253,7 +253,7 @@ PatchWindow::set_patch(SharedPtr<PatchModel> patch, SharedPtr<PatchView> view)
((int)_view->canvas()->width() - width)/2,
((int)_view->canvas()->height() - height)/2);
- set_title(_patch->path().str() + " - Ingen");
+ set_title(_patch->path().chop_scheme() + " - Ingen");
new_port_connection = patch->signal_new_port.connect(
sigc::mem_fun(this, &PatchWindow::patch_port_added));