diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-11-19 12:24:29 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-11-19 12:24:29 +0100 |
commit | 9fff8b3fe941783789ac9426730f01027cb081c3 (patch) | |
tree | 7246a88811a61cf4e676b72339c6078abd3701f2 /interface.c | |
parent | 8f9136ecab28d915d3e57f35badf4b74bb2bfce8 (diff) | |
download | vdr-9fff8b3fe941783789ac9426730f01027cb081c3.tar.gz vdr-9fff8b3fe941783789ac9426730f01027cb081c3.tar.bz2 |
Fixed learning remote control keys with the LCARS skin
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/interface.c b/interface.c index 2bfa6c39..82091d99 100644 --- a/interface.c +++ b/interface.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: interface.c 2.1 2011/12/04 14:52:38 kls Exp $ + * $Id: interface.c 2.2 2012/11/19 12:21:43 kls Exp $ */ #include "interface.h" @@ -160,6 +160,7 @@ void cInterface::LearnKeys(void) dsyslog("remote control %s - %s", Remote->Name(), known ? "keys known" : "learning keys"); if (!known) { cSkinDisplayMenu *DisplayMenu = Skins.Current()->DisplayMenu(); + DisplayMenu->SetMenuCategory(mcUnknown); char Headline[256]; snprintf(Headline, sizeof(Headline), tr("Learning Remote Control Keys")); cRemote::Clear(); |