mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: ensightWrite not reading "excludeFields" (fixes #2696)
- field blocking/exclusion added in commit d9ab5d54ef,
but was incorrectly doing a lookup for "blockField" for ensight
although "excludeFields" was documented (and expected).
Now corrected to use "excludeFields"
This commit is contained in:
@ -103,7 +103,7 @@ bool Foam::functionObjects::ensightWrite::readSelection(const dictionary& dict)
|
|||||||
selectFields_.uniq();
|
selectFields_.uniq();
|
||||||
|
|
||||||
blockFields_.clear();
|
blockFields_.clear();
|
||||||
dict.readIfPresent("blockFields", blockFields_);
|
dict.readIfPresent("excludeFields", blockFields_);
|
||||||
blockFields_.uniq();
|
blockFields_.uniq();
|
||||||
|
|
||||||
// Actions to define selection
|
// Actions to define selection
|
||||||
|
|||||||
Reference in New Issue
Block a user