#818 Update visibility of fields for slice intersection boxes

This commit is contained in:
Magne Sjaastad 2016-09-23 16:17:53 +02:00
parent 5c4b92f9b8
commit d87aa6a466

View File

@ -126,6 +126,8 @@ void RimIntersectionBox::setXSlice(double xValue)
singlePlaneState = PLANE_STATE_X; singlePlaneState = PLANE_STATE_X;
minXCoord = xValue; minXCoord = xValue;
maxXCoord = xValue; maxXCoord = xValue;
updateVisibility();
} }
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
@ -136,6 +138,8 @@ void RimIntersectionBox::setYSlice(double yValue)
singlePlaneState = PLANE_STATE_Y; singlePlaneState = PLANE_STATE_Y;
minYCoord = yValue; minYCoord = yValue;
maxYCoord = yValue; maxYCoord = yValue;
updateVisibility();
} }
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
@ -146,6 +150,8 @@ void RimIntersectionBox::setZSlice(double zValue)
singlePlaneState = PLANE_STATE_Z; singlePlaneState = PLANE_STATE_Z;
minZCoord = zValue; minZCoord = zValue;
maxZCoord = zValue; maxZCoord = zValue;
updateVisibility();
} }
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------