mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The timeout for the channel display is now reset whenever the channel or EPG data changes
This commit is contained in:
parent
d8523b0db8
commit
e02a0a8c88
2
HISTORY
2
HISTORY
@ -9186,3 +9186,5 @@ Video Disk Recorder Revision History
|
|||||||
'DEPRECATED_VDR_CHARSET_OVERRIDE=1' when compiling in order to restore this
|
'DEPRECATED_VDR_CHARSET_OVERRIDE=1' when compiling in order to restore this
|
||||||
functionality. However, it is recommended to use the command line option --chartab
|
functionality. However, it is recommended to use the command line option --chartab
|
||||||
instead.
|
instead.
|
||||||
|
- The timeout for the channel display is now reset whenever the channel or EPG data
|
||||||
|
changes.
|
||||||
|
4
menu.c
4
menu.c
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: menu.c 4.42 2017/10/31 09:42:07 kls Exp $
|
* $Id: menu.c 4.43 2017/11/02 15:26:42 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -4563,6 +4563,7 @@ void cDisplayChannel::DisplayChannel(void)
|
|||||||
displayChannel->SetChannel(channel, number);
|
displayChannel->SetChannel(channel, number);
|
||||||
cStatus::MsgOsdChannel(ChannelString(channel, number));
|
cStatus::MsgOsdChannel(ChannelString(channel, number));
|
||||||
lastPresent = lastFollowing = NULL;
|
lastPresent = lastFollowing = NULL;
|
||||||
|
lastTime.Set();
|
||||||
}
|
}
|
||||||
|
|
||||||
void cDisplayChannel::DisplayInfo(void)
|
void cDisplayChannel::DisplayInfo(void)
|
||||||
@ -4578,6 +4579,7 @@ void cDisplayChannel::DisplayInfo(void)
|
|||||||
cStatus::MsgOsdProgramme(Present ? Present->StartTime() : 0, Present ? Present->Title() : NULL, Present ? Present->ShortText() : NULL, Following ? Following->StartTime() : 0, Following ? Following->Title() : NULL, Following ? Following->ShortText() : NULL);
|
cStatus::MsgOsdProgramme(Present ? Present->StartTime() : 0, Present ? Present->Title() : NULL, Present ? Present->ShortText() : NULL, Following ? Following->StartTime() : 0, Following ? Following->Title() : NULL, Following ? Following->ShortText() : NULL);
|
||||||
lastPresent = Present;
|
lastPresent = Present;
|
||||||
lastFollowing = Following;
|
lastFollowing = Following;
|
||||||
|
lastTime.Set();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user