mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed unwanted reaction on the 'Green' and 'Yellow' button in the 'Event' display
This commit is contained in:
parent
ec5f332a5b
commit
02c5106555
1
HISTORY
1
HISTORY
@ -305,3 +305,4 @@ Video Disk Recorder Revision History
|
|||||||
- Now shifting the 'Subtitle' info into the 'ExtendedDescription' on stations
|
- Now shifting the 'Subtitle' info into the 'ExtendedDescription' on stations
|
||||||
that don't send the EIT information correctly (like, e.g., 'VOX').
|
that don't send the EIT information correctly (like, e.g., 'VOX').
|
||||||
- Implemented a 10 seconds latency when removing files.
|
- Implemented a 10 seconds latency when removing files.
|
||||||
|
- Fixed unwanted reaction on the "Green" and "Yellow" button in the "Event" display.
|
||||||
|
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 1.51 2000/11/18 15:42:39 kls Exp $
|
* $Id: menu.c 1.52 2000/11/18 16:30:13 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -1149,6 +1149,8 @@ eOSState cMenuEvent::ProcessKey(eKeys Key)
|
|||||||
|
|
||||||
if (state == osUnknown) {
|
if (state == osUnknown) {
|
||||||
switch (Key) {
|
switch (Key) {
|
||||||
|
case kGreen:
|
||||||
|
case kYellow: return osContinue;
|
||||||
case kOk: return osBack;
|
case kOk: return osBack;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user