Fixed a bug in channel switching after Left/Right has been pressed

This commit is contained in:
Klaus Schmidinger 2003-06-12 20:37:14 +02:00
parent 5bfe620b5b
commit 68002f0037
4 changed files with 13 additions and 4 deletions

View File

@ -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

View File

@ -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).

View File

@ -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

3
menu.c
View File

@ -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: