Summary Multi Plot: Minor adjustments (#8856)

Remove obsolete single summary template code
Always use maximized state of the QMdiSubWindow when a plot or view is deleted.
Move time axis to top
Set correct text for unused axis
Avoid assert when layout is requested for non existing legend
This commit is contained in:
Magne Sjaastad
2022-04-29 15:31:07 +02:00
committed by GitHub
parent f54399960d
commit 64bed1d611
16 changed files with 138 additions and 570 deletions

View File

@@ -95,7 +95,9 @@ void RicSaveMultiPlotTemplateFeature::onActionTriggered( bool isChecked )
QFile exportFile( fileName );
if ( !exportFile.open( QIODevice::WriteOnly | QIODevice::Text ) )
{
RiaLogging::error( QString( "Save Plot Template : Could not open the file: %1" ).arg( fileName ) );
RiaLogging::errorInMessageBox( NULL,
"Save Plot Template",
QString( "Could not save to the file: %1" ).arg( fileName ) );
return;
}