From 8de63a62e2c69b1785580edf8a72b3fe18b4181b Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 6 Jan 2003 16:13:53 +0100 Subject: [PATCH] CAM menu now always returns osEnd when Ok is pressed --- menu.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/menu.c b/menu.c index ce56ba0d..e3a4c182 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.230 2003/01/06 13:35:38 kls Exp $ + * $Id: menu.c 1.231 2003/01/06 16:13:53 kls Exp $ */ #include "menu.h" @@ -1551,9 +1551,8 @@ eOSState cMenuCam::Select(void) if (ciMenu->Selectable()) { ciMenu->Select(Current()); selected = true; - return osEnd; } - return osContinue; + return osEnd; } eOSState cMenuCam::ProcessKey(eKeys Key)