diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-02 12:59:53 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-02 12:59:53 +0200 |
commit | 2fc075f5f93d0207afc27e88659cedc66d392204 (patch) | |
tree | 319d40b593da5666f90fd6c408da2dbe7e11dfbb /menu.c | |
parent | 8302d81af2cce691722b5f3b22b0fc0f309c68a5 (diff) | |
download | vdr-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.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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; } |