diff options
author | lordjaxom <lordjaxom> | 2004-12-21 21:22:41 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2004-12-21 21:22:41 +0000 |
commit | dadf9cfdfa45fe1829eae4782190fa729eaa3f53 (patch) | |
tree | 962663c1fab63dce538ff078e3b5eab02d5bb109 /display.c | |
parent | 4d0853757fd7c2fe0f3f242045ad16c481915308 (diff) | |
download | vdr-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.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -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(); } |