Fixed an unnecessary double display of menu items in the Recordings menu

This commit is contained in:
Klaus Schmidinger 2024-01-19 12:17:05 +01:00
parent 939071bf25
commit 88b1e30494
3 changed files with 4 additions and 2 deletions

View File

@ -3396,6 +3396,7 @@ Matthias Senzel <matthias.senzel@t-online.de>
for fixing restoring the volume at program start for fixing restoring the volume at program start
for fixing height calculation in progress display for fixing height calculation in progress display
for fixing an unnecessary double display of the current menu item in page up/down for fixing an unnecessary double display of the current menu item in page up/down
for fixing an unnecessary double display of menu items in the Recordings menu
Marek Nazarko <mnazarko@gmail.com> Marek Nazarko <mnazarko@gmail.com>
for translating OSD texts to the Polish language for translating OSD texts to the Polish language

View File

@ -9875,3 +9875,5 @@ Video Disk Recorder Revision History
- Removed syslog calls in child process after fork() (thanks to Markus Ehrnsperger). - Removed syslog calls in child process after fork() (thanks to Markus Ehrnsperger).
- Fixed an unnecessary double display of the current menu item in page up/down - Fixed an unnecessary double display of the current menu item in page up/down
(thanks to Matthias Senzel). (thanks to Matthias Senzel).
- Fixed an unnecessary double display of menu items in the Recordings menu (thanks to
Matthias Senzel).

3
menu.c
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: menu.c 5.9 2022/12/01 13:09:04 kls Exp $ * $Id: menu.c 5.10 2024/01/19 12:17:05 kls Exp $
*/ */
#include "menu.h" #include "menu.h"
@ -3067,7 +3067,6 @@ cMenuRecordings::cMenuRecordings(const char *Base, int Level, bool OpenSubMenus,
return; return;
} }
} }
Display();
SetHelpKeys(); SetHelpKeys();
} }