Curve fill: draw line around patch (#922)

This commit is contained in:
SamSchott 2019-06-24 01:07:55 +01:00 committed by Ogi Moore
parent dea8a86dfd
commit 1b6537b241

View File

@ -502,7 +502,10 @@ class PlotCurveItem(GraphicsObject):
p.setPen(sp)
p.drawPath(path)
p.setPen(cp)
p.drawPath(path)
if self.fillPath is not None:
p.drawPath(self.fillPath)
else:
p.drawPath(path)
profiler('drawPath')
#print "Render hints:", int(p.renderHints())