summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-10-02 12:59:53 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-10-02 12:59:53 +0200
commit2fc075f5f93d0207afc27e88659cedc66d392204 (patch)
tree319d40b593da5666f90fd6c408da2dbe7e11dfbb /menu.c
parent8302d81af2cce691722b5f3b22b0fc0f309c68a5 (diff)
downloadvdr-2fc075f5f93d0207afc27e88659cedc66d392204.tar.gz
vdr-2fc075f5f93d0207afc27e88659cedc66d392204.tar.bz2
The CAM menu now automatically updates itself in case of a progress display
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/menu.c b/menu.c
index 96e07c0a..8d8ecb96 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.366 2005/10/02 10:08:57 kls Exp $
+ * $Id: menu.c 1.367 2005/10/02 12:56:19 kls Exp $
*/
#include "menu.h"
@@ -1338,6 +1338,10 @@ eOSState cMenuCam::ProcessKey(eKeys Key)
default: break;
}
}
+ if (ciMenu->HasUpdate()) {
+ selected = true; // just to not call ciMenu->Cancel()
+ return osEnd;
+ }
return state;
}