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>
|
Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de>
|
||||||
for reporting a crash when cancelling a newly created timer
|
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).
|
channel (thanks to Malcolm Caldwell for reporting this one).
|
||||||
- Some corrections to the Finnish OSD texts (thanks to Niko Tarnanen and Rolf
|
- Some corrections to the Finnish OSD texts (thanks to Niko Tarnanen and Rolf
|
||||||
Ahrenberg).
|
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
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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
|
#ifndef __CONFIG_H
|
||||||
@ -19,8 +19,8 @@
|
|||||||
#include "device.h"
|
#include "device.h"
|
||||||
#include "tools.h"
|
#include "tools.h"
|
||||||
|
|
||||||
#define VDRVERSION "1.2.1"
|
#define VDRVERSION "1.2.2"
|
||||||
#define VDRVERSNUM 10201 // Version * 10000 + Major * 100 + Minor
|
#define VDRVERSNUM 10202 // Version * 10000 + Major * 100 + Minor
|
||||||
|
|
||||||
#define MAXPRIORITY 99
|
#define MAXPRIORITY 99
|
||||||
#define MAXLIFETIME 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
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "menu.h"
|
||||||
@ -2783,6 +2783,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key)
|
|||||||
case kChanUp:
|
case kChanUp:
|
||||||
case kChanDn|k_Repeat:
|
case kChanDn|k_Repeat:
|
||||||
case kChanDn:
|
case kChanDn:
|
||||||
|
group = -1;
|
||||||
Refresh();
|
Refresh();
|
||||||
break;
|
break;
|
||||||
case kNone:
|
case kNone:
|
||||||
|
Loading…
Reference in New Issue
Block a user