diff options
author | Tobias Grimm <git@e-tobi.net> | 2010-02-28 13:53:54 +0100 |
---|---|---|
committer | Tobias Grimm <git@e-tobi.net> | 2010-02-28 13:53:54 +0100 |
commit | c060c08f03923d2677cc83c30e6f2de3eb948457 (patch) | |
tree | 6286da51316debf61d31bddb092554a89783a0a3 | |
parent | 81345e23c4b5f48a04df9df3185ff24800018994 (diff) | |
download | vdr-plugin-ttxtsubs-c060c08f03923d2677cc83c30e6f2de3eb948457.tar.gz vdr-plugin-ttxtsubs-c060c08f03923d2677cc83c30e6f2de3eb948457.tar.bz2 |
Trigger OSD update when an empty page is sent
...making the previous subtitle disappear (Closes #275)
-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; |