SVN commit 876828 by mart: don't try to paint when there is no image M +5 -0 meter.cpp --- trunk/KDE/kdebase/workspace/libs/plasma/widgets/meter.cpp #876827:876828 @@ -343,6 +343,11 @@ { Q_UNUSED(option) Q_UNUSED(widget) + + if (!d->image) { + return; + } + QRectF rect(QPointF(0, 0), size()); QRectF clipRect; qreal percentage = 0.0;