diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-01-26 11:09:25 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-01-26 11:09:25 +0100 |
commit | e010ca21064945a1f8e033178cdd85a5f9d8f6cd (patch) | |
tree | c1d456f9d02b87c8997f5afab76a0af7e88a45a8 | |
parent | 305abd449f33d3885d2167c05f33d3144ee05d15 (diff) | |
download | vdr-e010ca21064945a1f8e033178cdd85a5f9d8f6cd.tar.gz vdr-e010ca21064945a1f8e033178cdd85a5f9d8f6cd.tar.bz2 |
Fixed hierarchical recordings menu
-rw-r--r-- | menu.c | 4 |
1 files changed, 3 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.143 2002/01/20 14:01:40 kls Exp $ + * $Id: menu.c 1.144 2002/01/26 11:09:25 kls Exp $ */ #include "menu.h" @@ -1572,11 +1572,13 @@ cMenuRecordings::cMenuRecordings(const char *Base, int Level, bool OpenSubMenus) else if (OpenSubMenus && Open(true)) return; } + Display(); // this keeps the higher level menus from showing up briefly when pressing 'Back' during replay SetHelpKeys(); } cMenuRecordings::~cMenuRecordings() { + helpKeys = -1; delete base; } |