Regression test fixes (#9105)

* Do not show Open Summary Plot in 3D view Property Editor
* Regression Test: Fix missing update of correlation report plot
A fix was introduced in 73d598ee7e to avoid a crash when deleting a multi plot. This had a unintended side effect causing the sub plots in correlation report plot to not be inserted properly.

* Bump release version
This commit is contained in:
Magne Sjaastad
2022-07-01 11:36:49 +02:00
committed by GitHub
parent 6ad0bcee95
commit d4edc15215
3 changed files with 2 additions and 3 deletions

View File

@@ -566,7 +566,7 @@ bool RiuMultiPlotPage::showYAxis( int row, int column ) const
void RiuMultiPlotPage::performUpdate( RiaDefines::MultiPlotPageUpdateType whatToUpdate )
{
auto multiPlot = dynamic_cast<RimMultiPlot*>( m_plotDefinition.p() );
if ( !multiPlot || !multiPlot->isValid() ) return;
if ( multiPlot && !multiPlot->isValid() ) return;
if ( whatToUpdate == RiaDefines::MultiPlotPageUpdateType::ALL )
{