diff --git a/clients/keramik/keramik.cpp b/clients/keramik/keramik.cpp index 1ed4548eba..99f3fdc789 100644 --- a/clients/keramik/keramik.cpp +++ b/clients/keramik/keramik.cpp @@ -891,7 +891,8 @@ void KeramikButton::drawButton( QPainter *p ) } p->setPen( Qt::black ); // ### hardcoded color - p->drawPixmap( (size-17)/2, (size-17)/2, *deco ); + if (deco) + p->drawPixmap( (size-17)/2, (size-17)/2, *deco ); }