1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Fixed handling the color button texts in cMenuEditStrItem

This commit is contained in:
Klaus Schmidinger 2004-06-19 09:52:55 +02:00
parent b1737a8bcb
commit 667643ec23
3 changed files with 7 additions and 2 deletions

View File

@ -1040,3 +1040,6 @@ Olaf Henkel <olafhenkel@t-online.de>
Martin Dauskardt <md001@gmx.de> Martin Dauskardt <md001@gmx.de>
for reporting a problem with switching channels while an encrypted channel is being for reporting a problem with switching channels while an encrypted channel is being
recorded recorded
Maynard Cedric <maynard.cedric@wanadoo.fr>
for reporting a problem in handling the color button texts in cMenuEditStrItem

View File

@ -2924,3 +2924,5 @@ Video Disk Recorder Revision History
- Added cDevice::Flush() to make sure that all data in the video card's buffers - Added cDevice::Flush() to make sure that all data in the video card's buffers
has been processed (thanks to Reinhard Nissl). Currently this is not yet actually has been processed (thanks to Reinhard Nissl). Currently this is not yet actually
implemented for FF DVB cards. implemented for FF DVB cards.
- Fixed handling the color button texts in cMenuEditStrItem (thanks to Maynard
Cedric for reporting this one).

View File

@ -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: menuitems.c 1.18 2004/05/16 12:47:02 kls Exp $ * $Id: menuitems.c 1.19 2004/06/19 09:45:45 kls Exp $
*/ */
#include "menuitems.h" #include "menuitems.h"
@ -331,8 +331,8 @@ eOSState cMenuEditStrItem::ProcessKey(eKeys Key)
if (pos >= 0) { if (pos >= 0) {
insert = !insert; insert = !insert;
newchar = true; newchar = true;
SetHelpKeys();
} }
SetHelpKeys();
break; break;
case kYellow|k_Repeat: case kYellow|k_Repeat:
case kYellow: // Remove the character at current position; in insert mode it is the character to the right of cursor case kYellow: // Remove the character at current position; in insert mode it is the character to the right of cursor