#2267 Summary Plot : Remove wrong call to updatePlotTitle

This commit is contained in:
Magne Sjaastad
2017-12-14 14:25:49 +01:00
parent a946797394
commit 603f63a773
2 changed files with 2 additions and 2 deletions

View File

@@ -666,6 +666,7 @@ void RimSummaryCurve::fieldChangedByUi(const caf::PdmFieldHandle* changedField,
else if (&m_showCurve == changedField)
{
plot->updateAxes();
plot->updatePlotTitle();
}
else if (changedField == &m_plotAxis)
{
@@ -805,6 +806,7 @@ void RimSummaryCurve::fieldChangedByUi(const caf::PdmFieldHandle* changedField,
this->loadDataAndUpdate(true);
plot->updateAxes();
plot->updatePlotTitle();
}
if (&m_showCurve == changedField)

View File

@@ -152,8 +152,6 @@ void RimSummaryPlot::updateAxes()
{
updateTimeAxis();
}
updatePlotTitle();
}
//--------------------------------------------------------------------------------------------------