Skip to content
Snippets Groups Projects
Commit eb5a9fff authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: timeControlFunctionObject swallows dictionary modifications (closes #716)

- runTimeModifiable change to the dictionary not being propagated to
  the underlying functionObjects
parent 137bfedc
No related branches found
No related tags found
No related merge requests found
...@@ -736,7 +736,8 @@ bool Foam::functionObjects::timeControl::read(const dictionary& dict) ...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment