mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
diisplay only active timers
This commit is contained in:
parent
a9e7a34c11
commit
3d702a9ad5
@ -24,8 +24,10 @@ cGlobalSortedTimers::cGlobalSortedTimers(bool forceRefresh) : cVector<const cTim
|
|||||||
initial = false;
|
initial = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (cTimer *Timer = Timers.First(); Timer; Timer = Timers.Next(Timer))
|
for (cTimer *Timer = Timers.First(); Timer; Timer = Timers.Next(Timer)) {
|
||||||
|
if (Timer->HasFlags(tfActive))
|
||||||
Append(Timer);
|
Append(Timer);
|
||||||
|
}
|
||||||
|
|
||||||
//if remotetimers plugin is available, take timers also from him
|
//if remotetimers plugin is available, take timers also from him
|
||||||
if (pRemoteTimers) {
|
if (pRemoteTimers) {
|
||||||
|
Loading…
Reference in New Issue
Block a user