diff options
author | louis <louis.braun@gmx.de> | 2013-12-23 09:12:19 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-12-23 09:12:19 +0100 |
commit | b8754b03ee58576511ea35ac627420c36a88d43b (patch) | |
tree | b45b30f47306f17362e9a7c461e7228509b3f84f /styledpixmap.c | |
parent | 0a1e7935130518c41a9720e776a93e8520160ede (diff) | |
download | vdr-plugin-tvguide-b8754b03ee58576511ea35ac627420c36a88d43b.tar.gz vdr-plugin-tvguide-b8754b03ee58576511ea35ac627420c36a88d43b.tar.bz2 |
Added feature to jump to a specific channel with number keys
Diffstat (limited to 'styledpixmap.c')
-rw-r--r-- | styledpixmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/styledpixmap.c b/styledpixmap.c index 41bdf28..661ca08 100644 --- a/styledpixmap.c +++ b/styledpixmap.c @@ -59,6 +59,8 @@ void cStyledPixmap::drawBackgroundGraphical(eBackgroundType type, bool active) { pixmap->Fill(clrTransparent);
}
return;
+ } else if (type == bgChannelJump) {
+ back = imgCache.GetOsdElement(oeChannelJump);
}
if (back) {
pixmap->DrawImage(cPoint(0,0), *back);
|