[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:
Martin Gräßlin 2015-04-02 17:39:02 +02:00
parent d2cd10861b
commit 465721bb59

View file

@ -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);
};