diff --git a/ApplicationCode/Commands/SummaryPlotCommands/RicAsciiExportSummaryPlotFeature.cpp b/ApplicationCode/Commands/SummaryPlotCommands/RicAsciiExportSummaryPlotFeature.cpp index 5b58011686..877111c1f7 100644 --- a/ApplicationCode/Commands/SummaryPlotCommands/RicAsciiExportSummaryPlotFeature.cpp +++ b/ApplicationCode/Commands/SummaryPlotCommands/RicAsciiExportSummaryPlotFeature.cpp @@ -106,11 +106,11 @@ bool RicAsciiExportSummaryPlotFeature::writeAsciiExportForSummaryPlots(const QSt { out << summaryPlot->description(); out << summaryPlot->asciiDataForPlotExport(); + out << "\n\n"; progress++; pi.setProgress(progress); } - out << "\n"; RiaLogging::info(QString("Competed writing ascii values for summary plot(s) to file %1").arg(fileName)); return true; } diff --git a/ApplicationCode/ProjectDataModel/RimContextCommandBuilder.cpp b/ApplicationCode/ProjectDataModel/RimContextCommandBuilder.cpp index 6db6460519..2430641589 100644 --- a/ApplicationCode/ProjectDataModel/RimContextCommandBuilder.cpp +++ b/ApplicationCode/ProjectDataModel/RimContextCommandBuilder.cpp @@ -402,6 +402,10 @@ QStringList RimContextCommandBuilder::commandsFromSelection() commandIds << "RicSummaryCurveSwitchAxisFeature"; } + else if (dynamic_cast(uiItem)) + { + commandIds << "RicAsciiExportSummaryPlotFeature"; + } else if (dynamic_cast(uiItem) || dynamic_cast(uiItem) || dynamic_cast(uiItem))