diff options
author | David Robillard <d@drobilla.net> | 2009-05-28 14:58:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-28 14:58:02 +0000 |
commit | 6617930ccdc4f224fb6c7f4fe670cbd4374c6dae (patch) | |
tree | 45449988238d12beca3127f578f40889973994f4 /src/gui/NewSubpatchWindow.cpp | |
parent | 57bf41d3d6153f2202fcef50bc618806d2b58104 (diff) | |
download | ingen-6617930ccdc4f224fb6c7f4fe670cbd4374c6dae.tar.gz ingen-6617930ccdc4f224fb6c7f4fe670cbd4374c6dae.tar.bz2 ingen-6617930ccdc4f224fb6c7f4fe670cbd4374c6dae.zip |
Send port ranges and new subpatches as single PUTs.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2023 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/NewSubpatchWindow.cpp')
-rw-r--r-- | src/gui/NewSubpatchWindow.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/NewSubpatchWindow.cpp b/src/gui/NewSubpatchWindow.cpp index 3c697d81..0442d57b 100644 --- a/src/gui/NewSubpatchWindow.cpp +++ b/src/gui/NewSubpatchWindow.cpp @@ -99,10 +99,9 @@ NewSubpatchWindow::ok_clicked() props.insert(make_pair("ingen:polyphony", Atom(int32_t(poly)))); App::instance().engine()->put(ResourceImpl::meta_uri(Path::root_uri, path), props); - for (GraphObject::Properties::const_iterator i = _initial_data.begin(); i != _initial_data.end(); ++i) - App::instance().engine()->set_property(path, i->first, i->second); - - App::instance().engine()->set_property(path, "ingen:enabled", (bool)true); + props = _initial_data; + props.insert(make_pair("ingen:enabled", bool(true))); + App::instance().engine()->put(path, props); hide(); } |