mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: timeControlFunctionObject swallows dictionary modifications (closes #716)
- runTimeModifiable change to the dictionary not being propagated to the underlying functionObjects
This commit is contained in:
@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user