From 9a959745ae8d38e79fe64503c57aa3e632db644b Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Mon, 25 Sep 2023 17:51:20 +0200 Subject: [PATCH] Send curvesChanged signal to trigger multi plot updates This signal will trigger update of axes and set correct scaling factor --- ApplicationLibCode/ProjectDataModel/Summary/RimSummaryPlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationLibCode/ProjectDataModel/Summary/RimSummaryPlot.cpp b/ApplicationLibCode/ProjectDataModel/Summary/RimSummaryPlot.cpp index 15785a25cf0..f7084970074 100644 --- a/ApplicationLibCode/ProjectDataModel/Summary/RimSummaryPlot.cpp +++ b/ApplicationLibCode/ProjectDataModel/Summary/RimSummaryPlot.cpp @@ -2045,7 +2045,7 @@ void RimSummaryPlot::disconnectCurveSignals( RimSummaryCurve* curve ) //-------------------------------------------------------------------------------------------------- void RimSummaryPlot::curveDataChanged( const caf::SignalEmitter* emitter ) { - loadDataAndUpdate(); + curvesChanged.send(); } //--------------------------------------------------------------------------------------------------