Commit 196dd3fe authored by Max-Wilhelm Bruker's avatar Max-Wilhelm Bruker
Browse files

changed stack bg color

parent ae70f5f1
...@@ -44,7 +44,7 @@ QRectF StackZone::boundingRect() const ...@@ -44,7 +44,7 @@ QRectF StackZone::boundingRect() const
void StackZone::paint(QPainter *painter, const QStyleOptionGraphicsItem */*option*/, QWidget */*widget*/) void StackZone::paint(QPainter *painter, const QStyleOptionGraphicsItem */*option*/, QWidget */*widget*/)
{ {
if (bgPixmap.isNull()) if (bgPixmap.isNull())
painter->fillRect(boundingRect(), Qt::darkBlue); painter->fillRect(boundingRect(), QColor(113, 43, 43));
else else
painter->fillRect(boundingRect(), QBrush(bgPixmap)); painter->fillRect(boundingRect(), QBrush(bgPixmap));
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment