summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-11 02:00:27 +0000
committerDavid Robillard <d@drobilla.net>2012-03-11 02:00:27 +0000
commitc2ea4e3c59ce8c06066780d67237fdb07255c89e (patch)
tree306e2a91cf50a95a015cf9da4c9bcef6dfe32e29 /src
parentd88dc1da7ed999d56bc61d86fb20d75d45846912 (diff)
downloadingen-c2ea4e3c59ce8c06066780d67237fdb07255c89e.tar.gz
ingen-c2ea4e3c59ce8c06066780d67237fdb07255c89e.tar.bz2
ingen-c2ea4e3c59ce8c06066780d67237fdb07255c89e.zip
Fix crash when showing port properties window.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4048 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/gui/Controls.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/Controls.cpp b/src/gui/Controls.cpp
index c42f4b69..d4a0575b 100644
--- a/src/gui/Controls.cpp
+++ b/src/gui/Controls.cpp
@@ -110,6 +110,7 @@ Control::menu_properties()
{
PortPropertiesWindow* window;
WidgetFactory::get_widget_derived("port_properties_win", window);
+ window->init_window(*_app);
window->present(_port_model);
}