diff options
author | lordjaxom <lordjaxom> | 2005-01-31 14:40:55 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-01-31 14:40:55 +0000 |
commit | 56b621e296e51f4e5cde96085c85f6bd97b29e7f (patch) | |
tree | 5109863e1fc3baf48998a9ca980c505d7c56a32f | |
parent | 3ce6d5c52dc3b35f7fe90d9e2dbe38a680673994 (diff) | |
download | vdr-plugin-text2skin-56b621e296e51f4e5cde96085c85f6bd97b29e7f.tar.gz vdr-plugin-text2skin-56b621e296e51f4e5cde96085c85f6bd97b29e7f.tar.bz2 |
- hopefully fixed flushing order
-rw-r--r-- | status.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* - * $Id: status.c,v 1.8 2005/01/25 15:15:53 lordjaxom Exp $ + * $Id: status.c,v 1.9 2005/01/31 14:40:55 lordjaxom Exp $ */ #include "status.h" @@ -96,8 +96,9 @@ void cText2SkinStatus::Recording(const cDevice *Device, const char *Name) } if (mRender != NULL) { - mRender->UpdateUnlock(); + Dprintf("\nFlushing from cStatus\n\n"); mRender->Flush(true); + mRender->UpdateUnlock(); } } |