mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#872 - Fixes in export of multiple summary plots
This commit is contained in:
@@ -106,11 +106,11 @@ bool RicAsciiExportSummaryPlotFeature::writeAsciiExportForSummaryPlots(const QSt
|
|||||||
{
|
{
|
||||||
out << summaryPlot->description();
|
out << summaryPlot->description();
|
||||||
out << summaryPlot->asciiDataForPlotExport();
|
out << summaryPlot->asciiDataForPlotExport();
|
||||||
|
out << "\n\n";
|
||||||
|
|
||||||
progress++;
|
progress++;
|
||||||
pi.setProgress(progress);
|
pi.setProgress(progress);
|
||||||
}
|
}
|
||||||
out << "\n";
|
|
||||||
RiaLogging::info(QString("Competed writing ascii values for summary plot(s) to file %1").arg(fileName));
|
RiaLogging::info(QString("Competed writing ascii values for summary plot(s) to file %1").arg(fileName));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -402,6 +402,10 @@ QStringList RimContextCommandBuilder::commandsFromSelection()
|
|||||||
commandIds << "RicSummaryCurveSwitchAxisFeature";
|
commandIds << "RicSummaryCurveSwitchAxisFeature";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
else if (dynamic_cast<RimSummaryPlot*>(uiItem))
|
||||||
|
{
|
||||||
|
commandIds << "RicAsciiExportSummaryPlotFeature";
|
||||||
|
}
|
||||||
else if (dynamic_cast<RimWellLogCurve*>(uiItem) ||
|
else if (dynamic_cast<RimWellLogCurve*>(uiItem) ||
|
||||||
dynamic_cast<RimWellLogTrack*>(uiItem) ||
|
dynamic_cast<RimWellLogTrack*>(uiItem) ||
|
||||||
dynamic_cast<RimWellLogPlot*>(uiItem))
|
dynamic_cast<RimWellLogPlot*>(uiItem))
|
||||||
|
|||||||
Reference in New Issue
Block a user