diff options
Diffstat (limited to 'src/gui/NodeModule.cpp')
-rw-r--r-- | src/gui/NodeModule.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp index 746083fb..f368d15f 100644 --- a/src/gui/NodeModule.cpp +++ b/src/gui/NodeModule.cpp @@ -1,6 +1,6 @@ /* This file is part of Ingen. - Copyright 2007-2015 David Robillard <http://drobilla.net/> + Copyright 2007-2016 David Robillard <http://drobilla.net/> Ingen is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free @@ -81,6 +81,10 @@ NodeModule::NodeModule(GraphCanvas& canvas, plugin->signal_changed().connect( sigc::mem_fun(this, &NodeModule::plugin_changed)); } + + for (const auto& p : block->properties()) { + property_changed(p.first, p.second); + } } NodeModule::~NodeModule() |