summaryrefslogtreecommitdiff
path: root/src/vdr-plugin/menu_timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vdr-plugin/menu_timer.c')
-rw-r--r--src/vdr-plugin/menu_timer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vdr-plugin/menu_timer.c b/src/vdr-plugin/menu_timer.c
index 0501e0d..c72c790 100644
--- a/src/vdr-plugin/menu_timer.c
+++ b/src/vdr-plugin/menu_timer.c
@@ -15,11 +15,6 @@
#define ARRAYSIZE(a) sizeof(a)/sizeof(a[0])
-/*
-const char *intervalNames[] = {trNOOP("Once per day"), trNOOP("Once per week"),
- trNOOP("Once per month")};
-*/
-
const char *intervalNames[] = {NULL, NULL, NULL};
const int intervalValues[] = {24*60*60, 7*24*60*60, 30*24*60*60};
@@ -70,6 +65,11 @@ cEditWebviTimerMenu::cEditWebviTimerMenu(cWebviTimer &timer,
cString lastUpdated = cString::sprintf("%s\t%s", tr("Last fetched:"), lastTime);
Add(new cOsdItem(lastUpdated, osUnknown, false));
+ // still running?
+ if (timer.Running()) {
+ Add(new cOsdItem("Timer active", osUnknown, false);
+ }
+
// error
if (!timer.Success()) {
Add(new cOsdItem(tr("Error on last refresh!"), osUnknown, false));