Updated hand and table color

Updated default colors, darker, more modern, slick. Great feedback from
community.
This commit is contained in:
Matt Lowe 2015-05-05 23:58:36 +02:00
parent cf24f4aa04
commit 87d938e56b
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ QRectF HandZone::boundingRect() const
void HandZone::paint(QPainter *painter, const QStyleOptionGraphicsItem * /*option*/, QWidget * /*widget*/)
{
if (bgPixmap.isNull())
painter->fillRect(boundingRect(), QColor(80, 100, 50));
painter->fillRect(boundingRect(), QColor(30, 30, 30));
else
painter->fillRect(boundingRect(), QBrush(bgPixmap));
}