summaryrefslogtreecommitdiff
path: root/myreplaycontrol.c
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2012-04-24 12:29:31 +0200
committerAndreas Mair <amair.sob@googlemail.com>2012-04-24 12:29:31 +0200
commit435648cc3cf0b1713d4e976c971e599bbf50d5fe (patch)
treece8d6a5a6a8a2a95dfd29eb8d83d198db5e0ec0e /myreplaycontrol.c
parent0e946ea03ae88ee6fc44e70272d5e4a8940ba99d (diff)
downloadvdr-plugin-extrecmenu-435648cc3cf0b1713d4e976c971e599bbf50d5fe.tar.gz
vdr-plugin-extrecmenu-435648cc3cf0b1713d4e976c971e599bbf50d5fe.tar.bz2
Don't show recordings menu if replay is stopped using kStop (Closes #934).
Diffstat (limited to 'myreplaycontrol.c')
-rw-r--r--myreplaycontrol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/myreplaycontrol.c b/myreplaycontrol.c
index dcef55d..fbcd1bf 100644
--- a/myreplaycontrol.c
+++ b/myreplaycontrol.c
@@ -78,7 +78,7 @@ eOSState myReplayControl::ProcessKey(eKeys Key)
lastState = osEnd;
if(lastState == osEnd && mysetup.ReturnToPlugin)
fCallPlugin = true;
- if(Key==kBlue)
+ if(Key==kBlue || Key==kStop)
fCallPlugin = false;
return lastState;
}