BUG: timeControlFunctionObject swallows dictionary modifications (closes #716)

- runTimeModifiable change to the dictionary not being propagated to
  the underlying functionObjects
This commit is contained in:
Mark Olesen
2018-01-24 20:45:59 +01:00
parent 701a3cc7b4
commit 553e3f84ab

View File

@ -193,7 +193,8 @@ bool Foam::functionObjects::timeControl::read
executeControl_.read(dict);
readControls();
return true;
// Forward to underlying function object
return foPtr_->read(dict);
}
else
{