diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-29 09:24:48 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-29 09:24:48 +0200 |
commit | 59d03df3915337cbadfeccaaea7b547b6779f27d (patch) | |
tree | 46059ce36facba91ca08caccd8bfc49f1d155df2 /skinclassic.c | |
parent | 887194ccc11fe75188d61c1f24a79eb204053489 (diff) | |
download | vdr-59d03df3915337cbadfeccaaea7b547b6779f27d.tar.gz vdr-59d03df3915337cbadfeccaaea7b547b6779f27d.tar.bz2 |
Fixed setting the title in the replay display of the "Classic VDR" skin
Diffstat (limited to 'skinclassic.c')
-rw-r--r-- | skinclassic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skinclassic.c b/skinclassic.c index 3f0de1c5..f7c06cc6 100644 --- a/skinclassic.c +++ b/skinclassic.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skinclassic.c 1.3 2004/05/23 10:40:02 kls Exp $ + * $Id: skinclassic.c 1.4 2004/05/29 09:18:21 kls Exp $ */ #include "skinclassic.h" @@ -369,7 +369,7 @@ cSkinClassicDisplayReplay::~cSkinClassicDisplayReplay() void cSkinClassicDisplayReplay::SetTitle(const char *Title) { - osd->DrawText(x0, y0, Title, Theme.Color(clrReplayTitle), Theme.Color(clrBackground), cFont::GetFont(fontOsd)); + osd->DrawText(x0, y0, Title, Theme.Color(clrReplayTitle), Theme.Color(clrBackground), cFont::GetFont(fontOsd), x1 - x0); } void cSkinClassicDisplayReplay::SetMode(bool Play, bool Forward, int Speed) |