Add missing update of curve legend text

This commit is contained in:
Magne Sjaastad 2022-09-12 11:21:12 +02:00
parent 1edbd5fea8
commit 58852781c3

View File

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