mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a bug in channel switching after Left/Right has been pressed
This commit is contained in:
parent
5bfe620b5b
commit
68002f0037
@ -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
|
||||
|
5
HISTORY
5
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).
|
||||
|
6
config.h
6
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
|
||||
|
3
menu.c
3
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:
|
||||
|
Loading…
Reference in New Issue
Block a user