mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Created navigationPolicyUpdate to be used from navigation policies
This commit is contained in:
@@ -75,7 +75,7 @@ void Rim3dOverlayInfoConfig::fieldChangedByUi(const caf::PdmFieldHandle* changed
|
||||
|
||||
if (m_viewDef && m_viewDef->viewer())
|
||||
{
|
||||
m_viewDef->viewer()->issueBaseClassUpdate();
|
||||
m_viewDef->viewer()->update();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -792,7 +792,7 @@ void RimEclipseView::updateDisplayModelVisibility()
|
||||
}
|
||||
|
||||
m_viewer->setEnableMask(mask);
|
||||
m_viewer->issueBaseClassUpdate();
|
||||
m_viewer->update();
|
||||
|
||||
faultCollection->updateConnectedEditors();
|
||||
}
|
||||
|
||||
@@ -352,8 +352,7 @@ void RimGeoMechView::updateDisplayModelVisibility()
|
||||
}
|
||||
|
||||
m_viewer->setEnableMask(mask);
|
||||
m_viewer->issueBaseClassUpdate();
|
||||
|
||||
m_viewer->update();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
@@ -156,7 +156,7 @@ void RimView::updateViewerWidget()
|
||||
if (isViewerCreated) m_viewer->mainCamera()->setViewMatrix(cameraPosition);
|
||||
m_viewer->mainCamera()->viewport()->setClearColor(cvf::Color4f(backgroundColor()));
|
||||
|
||||
m_viewer->issueBaseClassUpdate();
|
||||
m_viewer->update();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -203,7 +203,7 @@ void RimView::updateCurrentTimeStepAndRedraw()
|
||||
{
|
||||
this->updateCurrentTimeStep();
|
||||
|
||||
if (m_viewer) m_viewer->issueBaseClassUpdate();
|
||||
if (m_viewer) m_viewer->update();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -426,7 +426,7 @@ void RimView::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QV
|
||||
|
||||
updateScaleTransform();
|
||||
createDisplayModelAndRedraw();
|
||||
m_viewer->issueBaseClassUpdate();
|
||||
m_viewer->update();
|
||||
}
|
||||
|
||||
RiuMainWindow::instance()->updateScaleValue();
|
||||
@@ -450,7 +450,7 @@ void RimView::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QV
|
||||
{
|
||||
if (m_viewer)
|
||||
{
|
||||
m_viewer->issueBaseClassUpdate();
|
||||
m_viewer->update();
|
||||
|
||||
RimProject* proj = NULL;
|
||||
this->firstAnchestorOrThisOfType(proj);
|
||||
|
||||
Reference in New Issue
Block a user