diff --git a/paintutils.cpp b/paintutils.cpp index c9444af05..72c538130 100644 --- a/paintutils.cpp +++ b/paintutils.cpp @@ -80,7 +80,7 @@ QPixmap shadowText(QString text, const QFont &font, QColor textColor, QColor sha //Draw blurred shadow QImage img(textRect.size() + QSize(radius * 2, radius * 2), QImage::Format_ARGB32_Premultiplied); - img.fill(Qt::transparent); + img.fill(0); p.begin(&img); p.drawImage(QPoint(radius, radius), textPixmap.toImage()); p.end();