summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2001-10-28 17:06:34 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2001-10-28 17:06:34 +0100
commit57bd015bcb3259e5850d80422851f98d96cfdf2a (patch)
tree2da3d18e96e3766a610589e68af818a97ba907b3 /menu.c
parentd3d7e8050fec9892fcbe79fa26cdfe973e442ff3 (diff)
downloadvdr-57bd015bcb3259e5850d80422851f98d96cfdf2a.tar.gz
vdr-57bd015bcb3259e5850d80422851f98d96cfdf2a.tar.bz2
Fixed handling the repeat function in the channel display (cont'd, up/down didn't work with repeat function)
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index e5742af9..a4a683b9 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.137 2001/10/28 16:03:49 kls Exp $
+ * $Id: menu.c 1.138 2001/10/28 17:06:34 kls Exp $
*/
#include "menu.h"
@@ -2132,7 +2132,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key)
case kOk: if (group >= 0)
Channels.SwitchTo(Channels.Get(Channels.GetNextNormal(group))->number);
return osEnd;
- default: if ((Key & (k_Repeat | k_Release)) == 0) {
+ default: if (NORMALKEY(Key) == kUp || NORMALKEY(Key) == kDown || (Key & (k_Repeat | k_Release)) == 0) {
Interface->PutKey(Key);
return osEnd;
}