diff options
author | louis <louis.braun@gmx.de> | 2014-01-16 16:55:57 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-01-16 16:55:57 +0100 |
commit | a7c76c8a23feecf86c736d751d76127266839a54 (patch) | |
tree | 545558218111f35806c2cc7116c814fc062e362e | |
parent | f32602e360e8043691580d095eab1e7209143422 (diff) | |
download | vdr-plugin-tvguide-a7c76c8a23feecf86c736d751d76127266839a54.tar.gz vdr-plugin-tvguide-a7c76c8a23feecf86c736d751d76127266839a54.tar.bz2 |
fixed a bug in placing epg pictures in detailed epg view
-rw-r--r-- | detailview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/detailview.c b/detailview.c index a497e6a..3a93b9d 100644 --- a/detailview.c +++ b/detailview.c @@ -104,7 +104,7 @@ bool cDetailView::setContentDrawportHeight() { yAddInf = yEPGText + heightEPG; yActors = yAddInf + heightReruns; yFanart = yActors + heightActors; - yEPGPics = yAddInf + heightFanart; + yEPGPics = yFanart + heightFanart; int totalHeight = heightBanner + heightEPG + heightReruns + heightActors + heightFanart + heightEpgPics + lineHeight; //check if pixmap content has to be scrollable |