From 9742672bbb5c8e78684ec61491dc84c545f0d8ac Mon Sep 17 00:00:00 2001 From: Flavio Tordini Date: Wed, 11 Nov 2009 21:28:58 +0100 Subject: [PATCH] Fixed one single black pixel --- src/playlist/PrettyItemDelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.5