diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/WindowFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/WindowFactory.cpp b/src/gui/WindowFactory.cpp index 6c4cba1e..3610b095 100644 --- a/src/gui/WindowFactory.cpp +++ b/src/gui/WindowFactory.cpp @@ -268,7 +268,7 @@ WindowFactory::present_load_plugin(SharedPtr<PatchModel> patch, GraphObject::Pro int width, height; w->second->get_size(width, height); _load_plugin_win->set_default_size(width - width / 8, height / 2); - _load_plugin_win->set_title(string("Load Plugin - ") + patch->path().str() + " - Ingen"); + _load_plugin_win->set_title(string("Load Plugin - ") + patch->path().chop_scheme() + " - Ingen"); _load_plugin_win->present(patch, data); } |