From 321756bcd76a24fc0024432a076f6042ddce9bd2 Mon Sep 17 00:00:00 2001 From: Martin Schirrmacher Date: Sun, 13 Jul 2014 12:41:06 +0200 Subject: position in menu item event --- HISTORY | 1 + displaymenu.c | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index f69d59c6..948fe715 100644 --- a/HISTORY +++ b/HISTORY @@ -29,6 +29,7 @@ VDR Plugin 'skinflatplus' Revision History * 6 = rect bar * 7 = round bar - [update] decor-files for new scrollbar options +- [fix] position in menu item event 2014-06-19: Version 0.3.1 - [fix] epg image position on channel info diff --git a/displaymenu.c b/displaymenu.c index 306660ce..318e1c6b 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -1407,7 +1407,11 @@ bool cFlatDisplayMenu::SetItemEvent(const cEvent *Event, int Index, bool Current LeftSecond = Left; cString channame; + w = menuItemWidth / 10 * 2; + if( !isScrolling ) + w = (menuItemWidth - scrollBarWidth)/ 10 * 2; + if( Config.MenuEventView == 2 || Config.MenuEventView == 3 ) { channame = Channel->Name(); w = font->Width(channame); @@ -1426,7 +1430,10 @@ bool cFlatDisplayMenu::SetItemEvent(const cEvent *Event, int Index, bool Current Left += w + marginItem * 2; if( Event ) { - int PBWidth = menuItemWidth/20; + int PBWidth = menuItemWidth / 20; + + if( !isScrolling ) + PBWidth = (menuItemWidth - scrollBarWidth) / 20; time_t now = time(NULL); if( (now >= (Event->StartTime() - 2*60) ) ) { -- cgit v1.2.3