summaryrefslogtreecommitdiff
path: root/skinclassic.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-05-29 09:24:48 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2004-05-29 09:24:48 +0200
commit59d03df3915337cbadfeccaaea7b547b6779f27d (patch)
tree46059ce36facba91ca08caccd8bfc49f1d155df2 /skinclassic.c
parent887194ccc11fe75188d61c1f24a79eb204053489 (diff)
downloadvdr-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.c4
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)