summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/setup.cpp7
-rw-r--r--plugin/status.cpp1
2 files changed, 7 insertions, 1 deletions
diff --git a/plugin/setup.cpp b/plugin/setup.cpp
index 99090ed..f67b4c6 100644
--- a/plugin/setup.cpp
+++ b/plugin/setup.cpp
@@ -99,7 +99,12 @@ eOSState cSetupMarkAd::ProcessKey(eKeys Key)
case osUnknown:
if ((Key==kBlue) && (Current()==lpos))
- return AddSubMenu(new cSetupMarkAdList(setup));;
+ return AddSubMenu(new cSetupMarkAdList(setup));
+ if (Key==kOk)
+ {
+ Store();
+ state=osBack;
+ }
break;
default:
diff --git a/plugin/status.cpp b/plugin/status.cpp
index ad088c1..21be601 100644
--- a/plugin/status.cpp
+++ b/plugin/status.cpp
@@ -126,6 +126,7 @@ void cStatusMarkAd::TimerChange(const cTimer *Timer, eTimerChange Change)
{
if (!Timer) return;
if (Change!=tcDel) return;
+ if (time(NULL)>=Timer->Stop()) return; // don't react on normal VDR timer deletion after recording
Remove(Timer->File(),true);
}