mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Ignoring "repeat" and "release" keys in the time search entry mode during replay
This commit is contained in:
parent
8f5da3f68b
commit
6520725bb2
@ -1612,6 +1612,8 @@ Andreas Brugger <brougs78@gmx.net>
|
|||||||
it in a context sensitive manner
|
it in a context sensitive manner
|
||||||
for reporting a loss of the date display in the "classic" skin's main menu
|
for reporting a loss of the date display in the "classic" skin's main menu
|
||||||
for reporting a missing setting of lastFreeMB in cMenuMain::Update()
|
for reporting a missing setting of lastFreeMB in cMenuMain::Update()
|
||||||
|
for suggesting to ignore "repeat" and "release" keys in the time search entry mode
|
||||||
|
during replay, to avoid inadvertently leaving it in case a key is pressed too long
|
||||||
|
|
||||||
Dino Ravnic <dino.ravnic@fer.hr>
|
Dino Ravnic <dino.ravnic@fer.hr>
|
||||||
for fixing some characters in the iso8859-2 font file
|
for fixing some characters in the iso8859-2 font file
|
||||||
|
3
HISTORY
3
HISTORY
@ -5594,3 +5594,6 @@ Video Disk Recorder Revision History
|
|||||||
- Speeded up anti-aliased font rendering by caching the blend indexes (based on
|
- Speeded up anti-aliased font rendering by caching the blend indexes (based on
|
||||||
a suggestion by Martin Wache).
|
a suggestion by Martin Wache).
|
||||||
- Fixed setting the OSD area in the pictures plugin.
|
- Fixed setting the OSD area in the pictures plugin.
|
||||||
|
- Ignoring "repeat" and "release" keys in the time search entry mode during replay,
|
||||||
|
to avoid inadvertently leaving it in case a key is pressed too long (suggested
|
||||||
|
by Andreas Brugger).
|
||||||
|
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.471 2008/02/08 13:48:31 kls Exp $
|
* $Id: menu.c 1.472 2008/02/09 12:24:24 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -4243,6 +4243,7 @@ void cReplayControl::TimeSearchProcess(eKeys Key)
|
|||||||
timeSearchActive = false;
|
timeSearchActive = false;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
if (!(Key & k_Flags)) // ignore repeat/release keys
|
||||||
timeSearchActive = false;
|
timeSearchActive = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user