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())
|
if (discusage->Parse())
|
||||||
discusage->Render();
|
discusage->Render();
|
||||||
}
|
}
|
||||||
if (timers) {
|
|
||||||
timers->Show();
|
|
||||||
if (timers->Parse())
|
|
||||||
timers->Render();
|
|
||||||
}
|
|
||||||
if (currentSchedule) {
|
if (currentSchedule) {
|
||||||
currentSchedule->Show();
|
currentSchedule->Show();
|
||||||
if (currentSchedule->Parse())
|
if (currentSchedule->Parse())
|
||||||
@ -1297,6 +1292,11 @@ void cViewMenuMain::DrawDynamicVEs(void) {
|
|||||||
lastDrawDynamic = now;
|
lastDrawDynamic = now;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (timers) {
|
||||||
|
timers->Show();
|
||||||
|
if (timers->Parse())
|
||||||
|
timers->Render();
|
||||||
|
}
|
||||||
if (devices) {
|
if (devices) {
|
||||||
devices->Show();
|
devices->Show();
|
||||||
if (devices->Parse())
|
if (devices->Parse())
|
||||||
|
Loading…
Reference in New Issue
Block a user