diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-18 16:31:48 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-11-18 16:31:48 +0100 |
commit | 02c5106555dbd85bbd6fa0c495a7b979cd54c012 (patch) | |
tree | af619eb277fd55421c677e2f7ca88ecf05d3206e /menu.c | |
parent | ec5f332a5b9f2f02ee2895344f68b147b19a93cc (diff) | |
download | vdr-02c5106555dbd85bbd6fa0c495a7b979cd54c012.tar.gz vdr-02c5106555dbd85bbd6fa0c495a7b979cd54c012.tar.bz2 |
Fixed unwanted reaction on the 'Green' and 'Yellow' button in the 'Event' display
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * 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" @@ -1149,6 +1149,8 @@ eOSState cMenuEvent::ProcessKey(eKeys Key) if (state == osUnknown) { switch (Key) { + case kGreen: + case kYellow: return osContinue; case kOk: return osBack; default: break; } |