summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-06-12 20:37:14 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-06-12 20:37:14 +0200
commit68002f00378378a87dd7416959c1e1347e27a99d (patch)
tree9f5657a514a9f25e0de7eacea17132fd828e39f5
parent5bfe620b5be6b3b5b36c3ea7b1dcb6afbe5ff5f9 (diff)
downloadvdr-68002f00378378a87dd7416959c1e1347e27a99d.tar.gz
vdr-68002f00378378a87dd7416959c1e1347e27a99d.tar.bz2
Fixed a bug in channel switching after Left/Right has been pressed
-rw-r--r--CONTRIBUTORS3
-rw-r--r--HISTORY5
-rw-r--r--config.h6
-rw-r--r--menu.c3
4 files changed, 13 insertions, 4 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 7e5886d2..c1f5eb80 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -719,3 +719,6 @@ Jon Burgess <mplayer@jburgess.uklinux.net>
Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de>
for reporting a crash when cancelling a newly created timer
+
+Michael Walle <michael.walle@web.de>
+ for reporting a bug in channel switching after Left/Right has been pressed
diff --git a/HISTORY b/HISTORY
index c1a82226..1ecb381c 100644
--- a/HISTORY
+++ b/HISTORY
@@ -2253,3 +2253,8 @@ Video Disk Recorder Revision History
channel (thanks to Malcolm Caldwell for reporting this one).
- Some corrections to the Finnish OSD texts (thanks to Niko Tarnanen and Rolf
Ahrenberg).
+
+2003-06-12: Version 1.2.2
+
+- Fixed a bug in channel switching after Left/Right has been pressed (thanks to
+ Michael Walle for reporting this one).
diff --git a/config.h b/config.h
index 29c058ef..40aead20 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.164 2003/06/06 12:28:20 kls Exp $
+ * $Id: config.h 1.165 2003/06/12 20:37:14 kls Exp $
*/
#ifndef __CONFIG_H
@@ -19,8 +19,8 @@
#include "device.h"
#include "tools.h"
-#define VDRVERSION "1.2.1"
-#define VDRVERSNUM 10201 // Version * 10000 + Major * 100 + Minor
+#define VDRVERSION "1.2.2"
+#define VDRVERSNUM 10202 // Version * 10000 + Major * 100 + Minor
#define MAXPRIORITY 99
#define MAXLIFETIME 99
diff --git a/menu.c b/menu.c
index 5a509345..44e23f5f 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.256 2003/06/07 12:31:57 kls Exp $
+ * $Id: menu.c 1.257 2003/06/12 16:11:32 kls Exp $
*/
#include "menu.h"
@@ -2783,6 +2783,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key)
case kChanUp:
case kChanDn|k_Repeat:
case kChanDn:
+ group = -1;
Refresh();
break;
case kNone: