diff options
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; } |