summaryrefslogtreecommitdiffstats
path: root/src/libs/gui/WindowFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-06-09 16:37:18 +0000
committerDavid Robillard <d@drobilla.net>2008-06-09 16:37:18 +0000
commitb3448dcc7c06fb19daee66dc2cf1cea79086e770 (patch)
tree7cc4539cf53a1178f021edcf231c4831d46ec20b /src/libs/gui/WindowFactory.cpp
parent7768f6a1ce048d75e0c019bf35a3e8f38822da72 (diff)
downloadingen-b3448dcc7c06fb19daee66dc2cf1cea79086e770.tar.gz
ingen-b3448dcc7c06fb19daee66dc2cf1cea79086e770.tar.bz2
ingen-b3448dcc7c06fb19daee66dc2cf1cea79086e770.zip
Make sure plugin window isn't modal (hopefully...).
git-svn-id: http://svn.drobilla.net/lad/ingen@1246 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/WindowFactory.cpp')
-rw-r--r--src/libs/gui/WindowFactory.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/gui/WindowFactory.cpp b/src/libs/gui/WindowFactory.cpp
index 0d04eed9..92b73962 100644
--- a/src/libs/gui/WindowFactory.cpp
+++ b/src/libs/gui/WindowFactory.cpp
@@ -260,6 +260,7 @@ WindowFactory::present_load_plugin(SharedPtr<PatchModel> patch, GraphObject::Var
if (w != _patch_windows.end())
_load_plugin_win->set_transient_for(*w->second);
+ _load_plugin_win->set_modal(false);
_load_plugin_win->present(patch, data);
}