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:
parent
988ec18ecc
commit
ff13cdd39d
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user