summaryrefslogtreecommitdiff
path: root/menuitem.c
diff options
context:
space:
mode:
Diffstat (limited to 'menuitem.c')
-rw-r--r--menuitem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menuitem.c b/menuitem.c
index 7e99b00..d955bf4 100644
--- a/menuitem.c
+++ b/menuitem.c
@@ -901,13 +901,13 @@ std::string cNopacityChannelMenuItem::readEPG(void) {
}
void cNopacityChannelMenuItem::Render(bool initial, bool fadeout) {
- if (selectable) { //Channels
+ if (selectable) { //Channels
DrawBackground();
DrawChannelLogoBackground();
if (!drawn) {
cImage *logo = imgCache->GetLogo(ctLogoMenuItem, Channel);
if (logo) {
- pixmapStatic->DrawImage(cPoint(1,1), *logo);
+ pixmapStatic->DrawImage(cPoint(1, (height - logo->Height()) / 2), *logo);
}
drawn = true;
}
@@ -935,7 +935,7 @@ void cNopacityChannelMenuItem::Render(bool initial, bool fadeout) {
infoTextWindow->Start();
}
}
- } else { //Channelseparators
+ } else { //Channelseparators
DrawDelimiter(Channel->Name(), "skinIcons/channeldelimiter", (config.GetValue("displayType")!=dtFlat )?seChannels:seNone);
}
}