From 2ab63ce14dc98d6a4b73f9024a75a598357075b9 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sun, 12 May 2013 23:41:36 +0200 Subject: [PATCH] - channellist: disable 'displayNext' when additional infos enabled * otherwise there is no possibility to disable 'displayNext' except exiting the channellist --- src/gui/channellist.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index db8effcb0..a06de7d0b 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -2105,8 +2105,12 @@ void CChannelList::paint() // paint background for main box frameBuffer->paintBoxRel(x, y+theight, width, height-footerHeight-theight, COL_MENUCONTENT_PLUS_0); if (g_settings.channellist_additional) + { + // disable displayNext + displayNext = false; // paint background for right box frameBuffer->paintBoxRel(x+width,y+theight,infozone_width,pig_height+infozone_height,COL_MENUCONTENT_PLUS_0); + } for(unsigned int count = 0; count < listmaxshow; count++) { paintItem(count, true);