diff options
author | louis <louis.braun@gmx.de> | 2013-04-14 12:00:27 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-04-14 12:00:27 +0200 |
commit | 9f70bbf3cd68c12c913dbc84ed28f7d2f7430487 (patch) | |
tree | 4e39ab87c18f90ea5865cc3b78f89a424c91166f /displaymenu.c | |
parent | 47e4d8da9edc889886edf683390d36bb4a515490 (diff) | |
download | skin-nopacity-9f70bbf3cd68c12c913dbc84ed28f7d2f7430487.tar.gz skin-nopacity-9f70bbf3cd68c12c913dbc84ed28f7d2f7430487.tar.bz2 |
Added display of next Schedules in Channel Menu
Diffstat (limited to 'displaymenu.c')
-rw-r--r-- | displaymenu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/displaymenu.c b/displaymenu.c index 26382f0..e99da16 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -469,13 +469,15 @@ bool cNopacityDisplayMenu::SetItemChannel(const cChannel *Channel, int Index, bo if (!config.narrowChannelMenu) return false; if ((initMenu)&&(Index > menuItemIndexLast)) { - cNopacityMenuItem *item = new cNopacityChannelMenuItem(osd, Channel, Selectable); + cNopacityMenuItem *item = new cNopacityChannelMenuItem(osd, Channel, Selectable, &videoWindowRect); cPoint itemSize; menuView->GetMenuItemSize(MenuCategory(), &itemSize); item->SetFont(menuView->GetMenuItemFont(mcChannel)); item->SetFontSmall(menuView->GetMenuItemFontSmall(mcChannel)); + item->SetFontEPGWindow(menuView->GetEPGWindowFont()); int spaceTop = menuView->GetMenuTop(currentNumItems, itemSize.Y()); item->SetGeometry(Index, spaceTop, menuView->GetMenuItemLeft(itemSize.X()), itemSize.X(), itemSize.Y(), menuView->spaceMenu); + item->SetTextWindow(menuView->GetDescriptionTextWindowSize(mcChannel)); item->SetCurrent(Current); item->SetBackgrounds(handleBackgrounds); item->CreateText(); |