Skip to content

Commit

Permalink
fix: export render with disabled fx
Browse files Browse the repository at this point in the history
  • Loading branch information
momentarylapse committed Jan 13, 2025
1 parent 036aab5 commit 98122df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/module/Module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,9 @@ void Module::changed() {
xfer<Module> Module::copy() const {
Module *clone = ModuleFactory::create(session, module_category, module_class);
string param = config_to_string();
clone->config_from_string(Module::VersionNumber::Latest, param);
clone->config_from_string(VersionNumber::Latest, param);
clone->_config_latest_history = param;
clone->enabled = enabled;
return clone;
}

Expand Down

0 comments on commit 98122df

Please sign in to comment.