Add missing update of curve legend text

This commit is contained in:
Magne Sjaastad
2022-09-12 11:21:12 +02:00
parent bbb8185a24
commit 8dc04d00e1

View File

@@ -755,6 +755,10 @@ void RimGridCrossPlot::updateLegend()
for ( auto dataSet : m_crossPlotDataSets )
{
dataSet->updateLegendIcons();
for ( auto c : dataSet->curves() )
{
c->updateCurveNameAndUpdatePlotLegendAndTitle();
}
}
}
}