summaryrefslogtreecommitdiffstats
path: root/src/gui/NewSubpatchWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/NewSubpatchWindow.cpp')
-rw-r--r--src/gui/NewSubpatchWindow.cpp7
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();
}