From: Flavio Tordini Date: Wed, 11 Nov 2009 20:28:58 +0000 (+0100) Subject: Fixed one single black pixel X-Git-Tag: 0.8~17 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9742672bbb5c8e78684ec61491dc84c545f0d8ac;p=minitube Fixed one single black pixel --- diff --git a/src/playlist/PrettyItemDelegate.cpp b/src/playlist/PrettyItemDelegate.cpp index 5c55ebf..9463b66 100644 --- a/src/playlist/PrettyItemDelegate.cpp +++ b/src/playlist/PrettyItemDelegate.cpp @@ -168,7 +168,7 @@ void PrettyItemDelegate::paintBody( QPainter* painter, painter->drawLine(THUMB_WIDTH, THUMB_HEIGHT, line.width(), THUMB_HEIGHT); if (!video->thumbnail().isNull()) painter->setPen(Qt::black); - painter->drawLine(0, THUMB_HEIGHT, THUMB_WIDTH, THUMB_HEIGHT); + painter->drawLine(0, THUMB_HEIGHT, THUMB_WIDTH-1, THUMB_HEIGHT); painter->restore();