mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed setting the colored button help after deleting a recording in case the next menu entry is a directory
This commit is contained in:
parent
ce0e97eb65
commit
456ded045c
@ -1302,3 +1302,7 @@ Roman Krenick
|
|||||||
|
|
||||||
Ville Skyttä <ville.skytta@iki.fi>
|
Ville Skyttä <ville.skytta@iki.fi>
|
||||||
for reporting several compiler warnings in gcc 4.0
|
for reporting several compiler warnings in gcc 4.0
|
||||||
|
|
||||||
|
Steffen Beyer <cpunk@reactor.de>
|
||||||
|
for fixing setting the colored button help after deleting a recording in case the next
|
||||||
|
menu entry is a directory
|
||||||
|
2
HISTORY
2
HISTORY
@ -3467,3 +3467,5 @@ Video Disk Recorder Revision History
|
|||||||
- Some fixes to avoid compiler warnings in gcc 4.0 (thanks to Ville Skyttä for reporting
|
- Some fixes to avoid compiler warnings in gcc 4.0 (thanks to Ville Skyttä for reporting
|
||||||
these).
|
these).
|
||||||
- Single shot timers are now reliably deleted when they have expired.
|
- Single shot timers are now reliably deleted when they have expired.
|
||||||
|
- Fixed setting the colored button help after deleting a recording in case the next
|
||||||
|
menu entry is a directory (thanks to Steffen Beyer).
|
||||||
|
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.346 2005/03/20 11:06:56 kls Exp $
|
* $Id: menu.c 1.347 2005/03/20 11:26:00 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
@ -1633,6 +1633,7 @@ eOSState cMenuRecordings::Delete(void)
|
|||||||
cReplayControl::ClearLastReplayed(ri->FileName());
|
cReplayControl::ClearLastReplayed(ri->FileName());
|
||||||
cOsdMenu::Del(Current());
|
cOsdMenu::Del(Current());
|
||||||
Recordings.Del(recording);
|
Recordings.Del(recording);
|
||||||
|
SetHelpKeys();
|
||||||
Display();
|
Display();
|
||||||
if (!Count())
|
if (!Count())
|
||||||
return osBack;
|
return osBack;
|
||||||
|
Loading…
Reference in New Issue
Block a user