Fixed an improper call of cStatus::OsdCurrentItem() before cStatus::OsdItem2()

This commit is contained in:
Klaus Schmidinger 2025-01-29 10:20:17 +01:00
parent 4ed7421b1c
commit af0309cc40
3 changed files with 5 additions and 3 deletions

View File

@ -2591,6 +2591,7 @@ Markus Ehrnsperger <markus.ehrnsperger@googlemail.com>
one event with the same VPS time one event with the same VPS time
for fixing handling margins for timers that are not VPS controlled and not spawned for fixing handling margins for timers that are not VPS controlled and not spawned
for implementing cStatus::OsdItem2() with the information whether the item is selectable for implementing cStatus::OsdItem2() with the information whether the item is selectable
for reporting an improper call of cStatus::OsdCurrentItem() before cStatus::OsdItem2()
Werner Färber <w.faerber@gmx.de> Werner Färber <w.faerber@gmx.de>
for reporting a bug in handling the cPluginManager::Active() result when pressing for reporting a bug in handling the cPluginManager::Active() result when pressing

View File

@ -10034,7 +10034,7 @@ Video Disk Recorder Revision History
(suggested by Stefan Hofmann). (suggested by Stefan Hofmann).
- Added vdrrootdir and incdir to vdr.pc (thanks to Stefan Hofmann). - Added vdrrootdir and incdir to vdr.pc (thanks to Stefan Hofmann).
2025-01-18: 2025-01-29:
- Removed all DEPRECATED_* code. - Removed all DEPRECATED_* code.
- Fixed error checking in case the fps value can't be determined by the frame parser. - Fixed error checking in case the fps value can't be determined by the frame parser.
@ -10063,3 +10063,5 @@ Video Disk Recorder Revision History
APIVERSNUM is now 30006. APIVERSNUM is now 30006.
- Fixed setting the file name of the info file after renaming a recording (reported by - Fixed setting the file name of the info file after renaming a recording (reported by
Stefan Hofmann). Stefan Hofmann).
- Fixed an improper call of cStatus::OsdCurrentItem() before cStatus::OsdItem2() (reported
by Markus Ehrnsperger).

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 5.2 2024/07/13 09:12:18 kls Exp $ * $Id: menuitems.c 5.3 2025/01/29 10:20:17 kls Exp $
*/ */
#include "menuitems.h" #include "menuitems.h"
@ -38,7 +38,6 @@ void cMenuEditItem::SetValue(const char *Value)
{ {
cString buffer = cString::sprintf("%s:\t%s", name, Value); cString buffer = cString::sprintf("%s:\t%s", name, Value);
SetText(buffer); SetText(buffer);
cStatus::MsgOsdCurrentItem(buffer);
} }
void cMenuEditItem::SetHelp(const char *Red, const char *Green, const char *Yellow, const char *Blue) void cMenuEditItem::SetHelp(const char *Red, const char *Green, const char *Yellow, const char *Blue)