From e0d7352c1bb4c4ab25675e8b0c9537af830653da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Jensen?= Date: Mon, 24 Sep 2018 13:25:23 +0200 Subject: [PATCH] #3388 Ensemble curve set statistics. Hide P50 curve by default --- .../ProjectDataModel/Summary/RimEnsembleStatistics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/ProjectDataModel/Summary/RimEnsembleStatistics.cpp b/ApplicationCode/ProjectDataModel/Summary/RimEnsembleStatistics.cpp index c08d18dcb9..e0f2bff273 100644 --- a/ApplicationCode/ProjectDataModel/Summary/RimEnsembleStatistics.cpp +++ b/ApplicationCode/ProjectDataModel/Summary/RimEnsembleStatistics.cpp @@ -41,7 +41,7 @@ RimEnsembleStatistics::RimEnsembleStatistics() CAF_PDM_InitField(&m_hideEnsembleCurves, "HideEnsembleCurves", false, "Hide Ensemble Curves", "", "", ""); CAF_PDM_InitField(&m_basedOnFilteredCases, "BasedOnFilteredCases", false, "Based on Filtered Cases", "", "", ""); CAF_PDM_InitField(&m_showP10Curve, "ShowP10Curve", true, "P90", "", "", ""); // Yes, P90 - CAF_PDM_InitField(&m_showP50Curve, "ShowP50Curve", true, "P50", "", "", ""); + CAF_PDM_InitField(&m_showP50Curve, "ShowP50Curve", false, "P50", "", "", ""); CAF_PDM_InitField(&m_showP90Curve, "ShowP90Curve", true, "P10", "", "", ""); // Yes, P10 CAF_PDM_InitField(&m_showMeanCurve, "ShowMeanCurve", true, "Mean", "", "", ""); CAF_PDM_InitField(&m_showCurveLabels, "ShowCurveLabels", true, "Show Curve Labels", "", "", "");