summaryrefslogtreecommitdiff
path: root/skins.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-11-07 09:52:21 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-11-07 09:52:21 +0100
commitf2d44b3d60fc8d8aad83eb5595c59c19b4d0739a (patch)
tree5697ee6212af9a83748fabf9d3943f1c3cb158db /skins.c
parentf8475a1d20ee4dade8b3f7590abfa794dae7741e (diff)
downloadvdr-f2d44b3d60fc8d8aad83eb5595c59c19b4d0739a.tar.gz
vdr-f2d44b3d60fc8d8aad83eb5595c59c19b4d0739a.tar.bz2
Added a missing call to cStatus::MsgOsdStatusMessage(NULL) in cSkins::Message()
Diffstat (limited to 'skins.c')
-rw-r--r--skins.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/skins.c b/skins.c
index 0129378c..5770bd4c 100644
--- a/skins.c
+++ b/skins.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: skins.c 1.2 2004/11/06 11:25:46 kls Exp $
+ * $Id: skins.c 1.3 2004/11/07 09:46:46 kls Exp $
*/
#include "skins.h"
@@ -183,10 +183,12 @@ eKeys cSkins::Message(eMessageType Type, const char *s, int Seconds)
if (displayMessage) {
delete displayMessage;
displayMessage = NULL;
+ cStatus::MsgOsdClear();
}
- else
+ else {
cSkinDisplay::Current()->SetMessage(Type, NULL);
- cStatus::MsgOsdClear();
+ cStatus::MsgOsdStatusMessage(NULL);
+ }
}
else if (!s && displayMessage) {
delete displayMessage;