summaryrefslogtreecommitdiff
path: root/display.c
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-21 21:22:41 +0000
committerlordjaxom <lordjaxom>2004-12-21 21:22:41 +0000
commitdadf9cfdfa45fe1829eae4782190fa729eaa3f53 (patch)
tree962663c1fab63dce538ff078e3b5eab02d5bb109 /display.c
parent4d0853757fd7c2fe0f3f242045ad16c481915308 (diff)
downloadvdr-plugin-text2skin-dadf9cfdfa45fe1829eae4782190fa729eaa3f53.tar.gz
vdr-plugin-text2skin-dadf9cfdfa45fe1829eae4782190fa729eaa3f53.tar.bz2
- fixed update of recording marks
Diffstat (limited to 'display.c')
-rw-r--r--display.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/display.c b/display.c
index 73183c6..0ed464c 100644
--- a/display.c
+++ b/display.c
@@ -1,5 +1,5 @@
/*
- * $Id: display.c,v 1.2 2004/12/21 18:35:54 lordjaxom Exp $
+ * $Id: display.c,v 1.3 2004/12/21 21:22:41 lordjaxom Exp $
*/
#include "render.h"
@@ -393,10 +393,8 @@ void cText2SkinDisplayReplay::SetProgress(int Current, int Total)
void cText2SkinDisplayReplay::SetMarks(const cMarks *Marks)
{
UpdateLock();
- if (mMarks != Marks) {
- mMarks = Marks;
- SetDirty();
- }
+ mMarks = Marks;
+ SetDirty();
UpdateUnlock();
}