From 185b81474ca56f7f17d60fa89c64183147423e43 Mon Sep 17 00:00:00 2001 From: Martin Schirrmacher Date: Wed, 20 Nov 2013 22:34:41 +0100 Subject: small fix, add icons --- displaymenu.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'displaymenu.c') diff --git a/displaymenu.c b/displaymenu.c index 3f40dae0..4ce767ff 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -184,8 +184,10 @@ void cFlatDisplayMenu::SetTitle(const char *Title) { cString icon; switch( menuCategory ) { case mcMain: + TopBarSetTitle(""); icon = "menuIcons/vdrlogo"; break; + case mcSchedule: case mcScheduleNow: case mcScheduleNext: icon = "menuIcons/Schedule"; @@ -360,7 +362,12 @@ void cFlatDisplayMenu::SetItem(const char *Text, int Index, bool Current, bool S if (imgLoader.LoadIcon(*cIcon, fontHeight)) { //printf("icon %s\n", *cIcon); menuIconsPixmap->DrawImage(cPoint(xt + Config.decorBorderMenuItemSize, y), imgLoader.GetImage()); - }// else + } else { + if (imgLoader.LoadIcon("menuIcons/blank", fontHeight)) { + //printf("icon %s\n", *cIcon); + menuIconsPixmap->DrawImage(cPoint(xt + Config.decorBorderMenuItemSize, y), imgLoader.GetImage()); + } + } //printf("no icon %s\n", *cIcon); menuPixmap->DrawText(cPoint(fontHeight + marginItem + xt + Config.decorBorderMenuItemSize, y), s, ColorFg, ColorBg, font, @@ -1036,7 +1043,7 @@ void cFlatDisplayMenu::SetText(const char *Text, bool FixedFont) { contentHeadPixmap->Fill(clrTransparent); int Left = Config.decorBorderMenuContentSize; - int Top = topBarHeight + marginItem + Config.decorBorderTopBarSize*2 + Config.decorBorderMenuContentHeadSize; + int Top = topBarHeight + marginItem + Config.decorBorderTopBarSize*2 + Config.decorBorderMenuContentSize; int Width = menuWidth - Config.decorBorderMenuContentSize*2; int Height = osdHeight - (topBarHeight + Config.decorBorderTopBarSize*2 + buttonsHeight + Config.decorBorderButtonSize*2 + marginItem*3); -- cgit v1.2.3