From cbd32dd914d2670b907aa6030ecbeefab78ae8b3 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 4 Feb 2006 12:50:11 +0100 Subject: Fixed auto advance in string entry fields when pressing Up/Down in insert mode --- CONTRIBUTORS | 2 ++ HISTORY | 2 ++ menuitems.c | 6 +++--- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 590d435f..788c05b6 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1357,6 +1357,8 @@ Udo Richter for making the Makefile report a summary of failed plugins for reporting a problem with the new handling of k_Repeat keypresses in channel switching + for reporting a problem with auto advance in string entry fields when pressing + Up/Down in insert mode Sven Kreiensen for his help in keeping 'channels.conf.terr' up to date diff --git a/HISTORY b/HISTORY index 72373dad..8cdaa581 100644 --- a/HISTORY +++ b/HISTORY @@ -4289,3 +4289,5 @@ Video Disk Recorder Revision History different OSD languages, so please make sure you have 21 versions for each of your texts. - Updated the Polish OSD texts (thanks to Jaroslaw Swierczynski). +- Fixed auto advance in string entry fields when pressing Up/Down in insert mode + (reported by Udo Richter). diff --git a/menuitems.c b/menuitems.c index 455070d1..e2380663 100644 --- a/menuitems.c +++ b/menuitems.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menuitems.c 1.30 2006/01/21 12:27:14 kls Exp $ + * $Id: menuitems.c 1.31 2006/02/04 12:47:08 kls Exp $ */ #include "menuitems.h" @@ -345,7 +345,7 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key) bool SameKey = Key == lastKey; if (Key != kNone) lastKey = Key; - else if (!newchar && autoAdvanceTimeout.TimedOut()) { + else if (!newchar && k0 <= NORMALKEY(lastKey) && NORMALKEY(lastKey) <= k9 && autoAdvanceTimeout.TimedOut()) { AdvancePos(); newchar = true; currentChar = NULL; @@ -427,7 +427,7 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key) value[pos] = toupper(Inc(tolower(value[pos]), NORMALKEY(Key) == kUp)); else value[pos] = Inc( value[pos], NORMALKEY(Key) == kUp); - newchar = true; + newchar = false; } else return cMenuEditItem::ProcessKey(Key); -- cgit v1.2.3