summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-31 14:40:55 +0000
committerlordjaxom <lordjaxom>2005-01-31 14:40:55 +0000
commit56b621e296e51f4e5cde96085c85f6bd97b29e7f (patch)
tree5109863e1fc3baf48998a9ca980c505d7c56a32f
parent3ce6d5c52dc3b35f7fe90d9e2dbe38a680673994 (diff)
downloadvdr-plugin-text2skin-56b621e296e51f4e5cde96085c85f6bd97b29e7f.tar.gz
vdr-plugin-text2skin-56b621e296e51f4e5cde96085c85f6bd97b29e7f.tar.bz2
- hopefully fixed flushing order
-rw-r--r--status.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/status.c b/status.c
index 4b7a4b9..a8cc2a0 100644
--- a/status.c
+++ b/status.c
@@ -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();
}
}