diff options
Diffstat (limited to 'tvguideosd.c')
-rw-r--r-- | tvguideosd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tvguideosd.c b/tvguideosd.c index f1ab5b0..77d2477 100644 --- a/tvguideosd.c +++ b/tvguideosd.c @@ -101,8 +101,8 @@ void cTvGuideOsd::drawOsd() { timeLine->drawClock();
channelGroups = new cChannelGroups();
channelGroups->ReadChannelGroups();
- //channelGroups->DumpGroups();
footer = new cFooter(channelGroups);
+ recMenuManager->SetFooter(footer);
footer->drawRedButton();
if (tvguideConfig.channelJumpMode == eNumJump) {
footer->drawGreenButton();
@@ -538,7 +538,9 @@ eOSState cTvGuideOsd::ChannelSwitch() { void cTvGuideOsd::DetailedEPG() {
if (!activeGrid->isDummy()) {
detailViewActive = true;
- detailView = new cDetailView(activeGrid->GetEvent());
+ detailView = new cDetailView(activeGrid->GetEvent(), footer);
+ footer->SetDetailedViewMode();
+ osdManager.flush();
detailView->setContent();
detailView->drawHeader();
detailView->drawContent();
|