From 959468598050d287e1cd22d3cd43b87b2c94beca Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Thu, 10 Nov 2016 12:16:33 +0100 Subject: [PATCH] #870 Summary : Use pen width 2.0 for curve plot marker --- ApplicationCode/UserInterface/RiuSummaryQwtPlot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ApplicationCode/UserInterface/RiuSummaryQwtPlot.cpp b/ApplicationCode/UserInterface/RiuSummaryQwtPlot.cpp index 4ffd8360f4..c66620e49c 100644 --- a/ApplicationCode/UserInterface/RiuSummaryQwtPlot.cpp +++ b/ApplicationCode/UserInterface/RiuSummaryQwtPlot.cpp @@ -130,7 +130,7 @@ RiuSummaryQwtPlot::RiuSummaryQwtPlot(RimSummaryPlot* plotDefinition, QWidget* pa m_plotMarker = new QwtPlotMarker; // QwtPlotMarker takes ownership of the symbol, it is deleted in destructor of QwtPlotMarker - m_plotMarker->setSymbol(new QwtSymbol(QwtSymbol::Ellipse, Qt::NoBrush, QPen(Qt::black), QSize(9, 9))); + m_plotMarker->setSymbol(new QwtSymbol(QwtSymbol::Ellipse, Qt::NoBrush, QPen(Qt::black, 2.0), QSize(9, 9))); } //--------------------------------------------------------------------------------------------------