mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Prepare for release
Always create plots using Qwt Always create plot for command "New Summary Plot" #9103 : Fix missing updates in multiselect field update operation Add Open Summary Plot Editor Trigger missing load of data Enable data source display for first realization of an ensemble Always show legend text Set version to 2022.06.0-RC-02
This commit is contained in:
@@ -564,7 +564,8 @@ void RimSummaryPlot::updatePlotTitle()
|
||||
RimMultiPlot* plotWindow = nullptr;
|
||||
firstAncestorOrThisOfType( plotWindow );
|
||||
|
||||
auto index = plotWindow->plotIndex( this );
|
||||
size_t index = 0;
|
||||
if ( plotWindow ) index = plotWindow->plotIndex( this );
|
||||
|
||||
QString title = QString( "Sub Plot %1" ).arg( index + 1 );
|
||||
m_fallbackPlotName = title;
|
||||
@@ -2361,6 +2362,11 @@ RiuPlotWidget* RimSummaryPlot::doCreatePlotViewWidget( QWidget* mainWindowParent
|
||||
useQtCharts = true;
|
||||
}
|
||||
|
||||
// Disable all use of QtCharts for now. If a plot was created using QtCharts during the period this flag was
|
||||
// active, the use of QtCharts was stored in the project file or template file. Set flag to false to force use
|
||||
// of Qwt
|
||||
useQtCharts = false;
|
||||
|
||||
if ( useQtCharts )
|
||||
{
|
||||
m_summaryPlot = std::make_unique<RiuSummaryQtChartsPlot>( this, mainWindowParent );
|
||||
|
||||
Reference in New Issue
Block a user