Skip to content
Snippets Groups Projects
Commit eea442e2 authored by Kutalmış Berçin's avatar Kutalmış Berçin
Browse files

BUG: cellSetOption: allow geometric selection update (fixes #3161)

parent 755d354f
Branches
No related merge requests found
......@@ -408,9 +408,13 @@ bool Foam::fv::cellSetOption::isActive()
// Report new volume (if changed)
setVol();
}
else if (selectionMode_ == smMovingPoints)
else if
(
selectionMode_ == smMovingPoints
|| selectionMode_ == smGeometric
)
{
// Update the cell selection if it moves
// Update the cell selection even if mesh is not moving
setCellSelection();
setVol();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment