diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | menuitems.c | 6 |
3 files changed, 5 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 272b280c..9f7d592c 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -439,6 +439,7 @@ Mirko Dölle <mdoelle@linux-user.de> for reporting a problem with inconsistent channel and timer lists for making the "Play" key in live viewing mode resume a previous replay session for suggesting to allow defining key macros for all non-modeless keys + for reporting a bug in entering '0' in a cMenuEditIntItem Michael Rakowski <mrak@gmx.de> for translating OSD texts to the Polish language @@ -4656,3 +4656,4 @@ Video Disk Recorder Revision History Oliver Endriss; thanks also to Udo Richter for a shorter version of the 'sed' expression). - Fixed broken APIVERSION extraction line in 'newplugin' (thanks to Oliver Endriss). +- Fixed entering '0' in a cMenuEditIntItem (reported by Mirko Dölle). diff --git a/menuitems.c b/menuitems.c index ef7cccc3..1bca4873 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.43 2006/04/23 11:39:48 kls Exp $ + * $Id: menuitems.c 1.44 2006/04/25 15:59:02 kls Exp $ */ #include "menuitems.h" @@ -80,10 +80,10 @@ eOSState cMenuEditIntItem::ProcessKey(eKeys Key) case kNone: break; case k0 ... k9: if (fresh) { - *value = 0; + newValue = 0; fresh = false; } - newValue = *value * 10 + (Key - k0); + newValue = newValue * 10 + (Key - k0); break; case kLeft: // TODO might want to increase the delta if repeated quickly? newValue = *value - 1; |