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 294a3d05ba
commit 20125b36a3

View File

@ -736,7 +736,8 @@ bool Foam::functionObjects::timeControl::read(const dictionary& dict)
executeControl_.read(dict); executeControl_.read(dict);
readControls(); readControls();
return true; // Forward to underlying function object
return foPtr_->read(dict);
} }
return false; return false;