[scene-qpainter] Fill decoration render rect with Qt::transparent
Used to be Qt::red which sounds a lot like testing code made it into a a commit...
This commit is contained in:
parent
d2cd10861b
commit
465721bb59
1 changed files with 1 additions and 1 deletions
|
@ -832,7 +832,7 @@ void SceneQPainterDecorationRenderer::render()
|
|||
painter.save();
|
||||
// clear existing part
|
||||
painter.setCompositionMode(QPainter::CompositionMode_Source);
|
||||
painter.fillRect(rect, Qt::red);
|
||||
painter.fillRect(rect, Qt::transparent);
|
||||
painter.restore();
|
||||
client()->decoration()->paint(&painter, rect);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue