diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | ttxtsubsdisplay.c | 1 |
2 files changed, 4 insertions, 1 deletions
@@ -1,9 +1,11 @@ VDR Plugin 'ttxtsubs' Revision History -------------------------------------- -2010-??-??: Version 0.3.0 +2010-??-??: Version 0.2.1 - Added Estonian translation by Arthur Konovalov (Closes #271) - Finnish translation updated by Rolf Ahrenberg +- Trigger OSD update when an empty page is sent (making the previous subtitle + disappear) (Closes #275) 2010-02-27: Version 0.2.0 - Add Ukrainian translation by Yarema aka Knedlyk (Closes #130) diff --git a/ttxtsubsdisplay.c b/ttxtsubsdisplay.c index e490c6c..148d2c2 100644 --- a/ttxtsubsdisplay.c +++ b/ttxtsubsdisplay.c @@ -238,6 +238,7 @@ void cTtxtSubsDisplay::TtxtData(const uint8_t *Data, uint64_t sched_time) { memset(&_page.data, 0, sizeof(_page.data)); _page.flags |= erasepage; + _pageChanged = true; } if (fi[5] & 0x20) // Newsflash _page.flags |= newsflash; |