#927 Intersection box: 3D manipulator not updated when changing scale

This commit is contained in:
Magne Sjaastad
2016-10-25 09:50:33 +02:00
parent 1e7e0fdc7a
commit 3dd0829efa
4 changed files with 20 additions and 2 deletions

View File

@@ -215,3 +215,14 @@ bool RimIntersectionCollection::hasActiveCrossSectionForSimulationWell(RimEclips
return false;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RimIntersectionCollection::updateIntersectionBoxGeometry()
{
for (auto intersectionBox : m_intersectionBoxes)
{
intersectionBox->updateBoxManipulatorGeometry();
}
}