From 4a11022288360c56027f0474e6d5fc2f23fa91b9 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Mon, 1 Nov 2021 12:53:18 +0100 Subject: [PATCH] #8095 Correlation Matrix: Invert Blue-Red coloring fix colors Revert "#8095 Correlation Matrix: Invert Blue-Red coloring " This reverts commit f69c8bab9ceb17cfe46c02663cb1567291976413. --- .../CorrelationPlots/RimCorrelationMatrixPlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationLibCode/ProjectDataModel/CorrelationPlots/RimCorrelationMatrixPlot.cpp b/ApplicationLibCode/ProjectDataModel/CorrelationPlots/RimCorrelationMatrixPlot.cpp index 54ced906b9..c18f39d799 100644 --- a/ApplicationLibCode/ProjectDataModel/CorrelationPlots/RimCorrelationMatrixPlot.cpp +++ b/ApplicationLibCode/ProjectDataModel/CorrelationPlots/RimCorrelationMatrixPlot.cpp @@ -175,7 +175,7 @@ RimCorrelationMatrixPlot::RimCorrelationMatrixPlot() m_legendConfig = new RimRegularLegendConfig(); m_legendConfig->setAutomaticRanges( -1.0, 1.0, -1.0, 1.0 ); m_legendConfig->setColorLegend( - RimRegularLegendConfig::mapToColorLegend( RimRegularLegendConfig::ColorRangesType::RED_WHITE_BLUE ) ); + RimRegularLegendConfig::mapToColorLegend( RimRegularLegendConfig::ColorRangesType::BLUE_WHITE_RED ) ); setLegendsVisible( false );