Skip to content

Commit

Permalink
(#396) Replot on data update
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobStoren committed Sep 2, 2015
1 parent e44a78c commit 7e676dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ApplicationCode/ProjectDataModel/RimWellLogPlotCurve.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void RimWellLogPlotCurve::fieldChangedByUi(const caf::PdmFieldHandle* changedFie
m_plotCurve->detach();
}

m_plot->replot();

}

m_plotCurve->setTitle(this->m_userName());
Expand Down Expand Up @@ -120,6 +120,7 @@ void RimWellLogPlotCurve::updatePlotData()
{
wellLogPlot->updateAvailableDepthRange();
}
m_plot->replot();
}

//--------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -255,6 +256,8 @@ void RimWellLogEclipseCurve::updatePlotData()
wellLogPlot->updateAvailableDepthRange();
}
}

m_plot->replot();
}

//--------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 7e676dd

Please sign in to comment.