summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-07-23 09:26:50 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-07-23 09:26:50 +0200
commit2aa43cb3e2ffdde04724aaefa68422e882c51085 (patch)
tree9257b6fd10ca18aa5f6e8367dffcab8921207985
parent92e4e131d015e278fbae178126743ccc8b01aaec (diff)
downloadvdr-2aa43cb3e2ffdde04724aaefa68422e882c51085.tar.gz
vdr-2aa43cb3e2ffdde04724aaefa68422e882c51085.tar.bz2
Fixed handling numeric keys in the channel display after switching channel groups
-rw-r--r--CONTRIBUTORS2
-rw-r--r--HISTORY4
-rw-r--r--menu.c3
3 files changed, 7 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index afae3683..849d4a28 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -1222,6 +1222,8 @@ Andreas Regel <andreas.regel@gmx.de>
for reporting a problem in handling Transfer Mode for radio channels
for reporting a problem with messages when a cOsdObject uses the raw OSD
for implementing palette replace mode in the OSD bitmaps
+ for fixing handling numeric keys in the channel display after switching channel
+ groups
Thomas Bergwinkl <Thomas.Bergwinkl@vr-web.de>
for fixing the validity check for channel IDs, because some providers use TIDs
diff --git a/HISTORY b/HISTORY
index c9b0efd8..2cf2b868 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4802,7 +4802,7 @@ Video Disk Recorder Revision History
- Now making sure a VPS timer has a schedule in case the epg.data file didn't
contain one when VDR was started.
-2006-07-22: Version 1.4.1-2
+2006-07-23: Version 1.4.1-2
- Fixed the Makefile of the 'servicedemo' plugin, so that it defines the
PLUGIN macro, which allows the Make.config file to react properly when
@@ -4828,3 +4828,5 @@ Video Disk Recorder Revision History
Schmirler).
- cDevice::GetDevice() now prefers any device that's already receiving and doesn't
require detatching receivers (suggested by Anssi Hannula).
+- Fixed handling numeric keys in the channel display after switching channel groups
+ (thanks to Andreas Regel).
diff --git a/menu.c b/menu.c
index 62fdd5a3..7e4f3625 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.442 2006/06/24 10:22:57 kls Exp $
+ * $Id: menu.c 1.443 2006/07/23 09:23:11 kls Exp $
*/
#include "menu.h"
@@ -3146,6 +3146,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key)
return osEnd;
}
case k1 ... k9:
+ group = -1;
if (number >= 0) {
if (number > Channels.MaxNumber())
number = Key - k0;