diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-09 12:29:04 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-09 12:29:04 +0100 |
commit | 6520725bb2e4baf2dfd67e19c2e6977a1a5f1af8 (patch) | |
tree | 9ea717afd04da7d60de6f1988eec2c1a55f18ca9 | |
parent | 8f5da3f68bd8db1d718aa4239f66f6cca2ecd49e (diff) | |
download | vdr-6520725bb2e4baf2dfd67e19c2e6977a1a5f1af8.tar.gz vdr-6520725bb2e4baf2dfd67e19c2e6977a1a5f1af8.tar.bz2 |
Ignoring "repeat" and "release" keys in the time search entry mode during replay
-rw-r--r-- | CONTRIBUTORS | 2 | ||||
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | menu.c | 5 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index aa74d116..53a3cd13 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1612,6 +1612,8 @@ Andreas Brugger <brougs78@gmx.net> it in a context sensitive manner for reporting a loss of the date display in the "classic" skin's main menu for reporting a missing setting of lastFreeMB in cMenuMain::Update() + for suggesting to ignore "repeat" and "release" keys in the time search entry mode + during replay, to avoid inadvertently leaving it in case a key is pressed too long Dino Ravnic <dino.ravnic@fer.hr> for fixing some characters in the iso8859-2 font file @@ -5594,3 +5594,6 @@ Video Disk Recorder Revision History - Speeded up anti-aliased font rendering by caching the blend indexes (based on a suggestion by Martin Wache). - Fixed setting the OSD area in the pictures plugin. +- Ignoring "repeat" and "release" keys in the time search entry mode during replay, + to avoid inadvertently leaving it in case a key is pressed too long (suggested + by Andreas Brugger). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.471 2008/02/08 13:48:31 kls Exp $ + * $Id: menu.c 1.472 2008/02/09 12:24:24 kls Exp $ */ #include "menu.h" @@ -4243,7 +4243,8 @@ void cReplayControl::TimeSearchProcess(eKeys Key) timeSearchActive = false; break; default: - timeSearchActive = false; + if (!(Key & k_Flags)) // ignore repeat/release keys + timeSearchActive = false; break; } |