The CAM menu now automatically updates itself in case of a progress display

This commit is contained in:
Klaus Schmidinger
2005-10-02 12:59:53 +02:00
parent 8302d81af2
commit 2fc075f5f9
4 changed files with 15 additions and 3 deletions

6
menu.c
View File

@@ -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;
}