mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
Fix update timer in the main menu
The timers in the open main menu were not updated when a timer recording was started or stopped
This commit is contained in:
parent
3c7e014dcc
commit
ebd99e119c
@ -1269,11 +1269,6 @@ void cViewMenuMain::DrawStaticVEs(void) {
|
||||
if (discusage->Parse())
|
||||
discusage->Render();
|
||||
}
|
||||
if (timers) {
|
||||
timers->Show();
|
||||
if (timers->Parse())
|
||||
timers->Render();
|
||||
}
|
||||
if (currentSchedule) {
|
||||
currentSchedule->Show();
|
||||
if (currentSchedule->Parse())
|
||||
@ -1297,6 +1292,11 @@ void cViewMenuMain::DrawDynamicVEs(void) {
|
||||
lastDrawDynamic = now;
|
||||
}
|
||||
|
||||
if (timers) {
|
||||
timers->Show();
|
||||
if (timers->Parse())
|
||||
timers->Render();
|
||||
}
|
||||
if (devices) {
|
||||
devices->Show();
|
||||
if (devices->Parse())
|
||||
|
Loading…
Reference in New Issue
Block a user