#2331 Save the 2D Intersection views. Turn off unneccesary fields

This commit is contained in:
Jacob Støren
2018-01-29 11:24:53 +01:00
parent a5dd38969f
commit 6dead054c4
4 changed files with 21 additions and 6 deletions

View File

@@ -863,9 +863,21 @@ void Rim3dView::forceShowWindowOn()
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void Rim3dView::disableGridBox()
void Rim3dView::disableGridBoxField()
{
m_showGridBox = false;
m_showGridBox.uiCapability()->setUiHidden(true);
m_showGridBox.xmlCapability()->setIOWritable(false);
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void Rim3dView::disablePerspectiveProjectionField()
{
isPerspectiveView = false;
isPerspectiveView.uiCapability()->setUiHidden(true);
isPerspectiveView.xmlCapability()->setIOWritable(false);
}
//--------------------------------------------------------------------------------------------------