From ec4a5bf3c1211a948d9975e2fd7c9d5928f78c68 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Fri, 1 Feb 2013 22:59:07 +0100 Subject: [PATCH] - channellist.cpp: fix round borders for infozone --- src/gui/channellist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index ee9ed6bc9..90ea2619a 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -572,7 +572,7 @@ int CChannelList::show() if (g_settings.channellist_minitv) { - frameBuffer->paintBoxRel(x,y,widthDetails,height + info_height,COL_MENUHEAD_PLUS_0, RADIUS_LARGE, CORNER_ALL); + frameBuffer->paintBoxRel(x+width,y+theight,infozone_width,pig_height+infozone_height,COL_MENUHEAD_PLUS_0, RADIUS_LARGE, CORNER_BOTTOM); } paintHead(); @@ -2099,7 +2099,7 @@ void CChannelList::paint_pig (int _x, int _y, int w, int h) void CChannelList::paint_events(int index) { readEvents(chanlist[index]->channel_id); - frameBuffer->paintBoxRel(x+ width,y+ theight+pig_height, infozone_width, infozone_height,COL_MENUHEAD_PLUS_0); + frameBuffer->paintBoxRel(x+ width,y+ theight+pig_height, infozone_width, infozone_height,COL_MENUHEAD_PLUS_0, RADIUS_LARGE, CORNER_BOTTOM); char text1[10]; CChannelEventList::iterator e;