From 3b707458be79ed022bc5ee54609f03f1336971a6 Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Thu, 28 Nov 2013 17:53:29 +0400 Subject: [PATCH] gui/channellist.cpp: disable screen save for detail line --- src/gui/channellist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 082331577..033b66fdb 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -1753,7 +1753,7 @@ void CChannelList::paintItem2DetailsLine (int pos) if (pos >= 0) { if (dline == NULL) dline = new CComponentsDetailLine(xpos, ypos1, ypos2, fheight/2+1, info_height-RADIUS_LARGE*2); - dline->paint(); + dline->paint(false); } }