changed stack bg color

This commit is contained in:
Max-Wilhelm Bruker 2010-11-05 21:53:42 +01:00
parent ae70f5f17c
commit 196dd3fed6
4 changed files with 1 additions and 1 deletions

View file

@ -44,7 +44,7 @@ QRectF StackZone::boundingRect() const
void StackZone::paint(QPainter *painter, const QStyleOptionGraphicsItem */*option*/, QWidget */*widget*/)
{
if (bgPixmap.isNull())
painter->fillRect(boundingRect(), Qt::darkBlue);
painter->fillRect(boundingRect(), QColor(113, 43, 43));
else
painter->fillRect(boundingRect(), QBrush(bgPixmap));
}