From 073bd93df7647f71c349fb7b1484a6ff3b2535f1 Mon Sep 17 00:00:00 2001 From: Ronan Le Tiec Date: Thu, 19 Nov 2020 17:24:48 +0100 Subject: [PATCH] remove the grainline filling --- src/app/puzzle/vpgraphicspiece.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/puzzle/vpgraphicspiece.cpp b/src/app/puzzle/vpgraphicspiece.cpp index a2b4f16c4..7babfa5a3 100644 --- a/src/app/puzzle/vpgraphicspiece.cpp +++ b/src/app/puzzle/vpgraphicspiece.cpp @@ -195,7 +195,10 @@ void VPGraphicsPiece::paint(QPainter *painter, const QStyleOptionGraphicsItem *o // paint the grainline if(!m_grainline.isEmpty()) { - painter->setBrush(blackBrush); + // here to fill the grainlines arrow. Not wanted for mvp + // later maybe if it's configurable +// painter->setBrush(blackBrush); + painter->drawPath(m_grainline); }