From ced9342152adceab46a439a295d3fc37a18b52bb Mon Sep 17 00:00:00 2001 From: astridkbjorke Date: Fri, 10 Mar 2017 15:59:26 +0100 Subject: [PATCH] #1294 Only include branches selected in plot in csv export --- ApplicationCode/ProjectDataModel/RimWellLogPlot.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ApplicationCode/ProjectDataModel/RimWellLogPlot.cpp b/ApplicationCode/ProjectDataModel/RimWellLogPlot.cpp index 798f5ca9eb..22fc29e84a 100644 --- a/ApplicationCode/ProjectDataModel/RimWellLogPlot.cpp +++ b/ApplicationCode/ProjectDataModel/RimWellLogPlot.cpp @@ -394,6 +394,8 @@ QString RimWellLogPlot::asciiDataForPlotExport() const for (RimWellLogTrack* track : m_tracks) { + if (!track->isVisible()) continue; + out += "\n" + track->description() + "\n"; std::vector curves = track->curvesVector();