mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Added a missing call to cStatus::MsgOsdStatusMessage(NULL) in cSkins::Message()
This commit is contained in:
8
skins.c
8
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;
|
||||
|
||||
Reference in New Issue
Block a user