UI Nits: Side Calendar border

.. fixed bug in GcLabel::paint that makes a nasty border
on the day which makes it look like a button. yuck.
This commit is contained in:
Mark Liversedge
2013-03-15 21:06:00 +00:00
parent 26d2c0f5f7
commit e9aba5a512

View File

@@ -160,7 +160,7 @@ GcLabel::paintEvent(QPaintEvent *)
else painter.fillRect(all, Qt::lightGray);
painter.setPen(Qt::gray);
painter.drawRect(QRect(0,0,width()-1,height()-1));
painter.drawRect(QRect(0,0,width(),height()));
}
if (selected) {