diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-06-19 10:10:14 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-06-19 10:10:14 +0200 |
commit | 7a79fef0c8298012f59b2050597ae4bb00265dec (patch) | |
tree | 8b5625c40008422964eeac9142e881a78b28d34e /menu.c | |
parent | 1922b1401048262b1f6a931ebdeebfc65ccbe2a3 (diff) | |
download | vdr-7a79fef0c8298012f59b2050597ae4bb00265dec.tar.gz vdr-7a79fef0c8298012f59b2050597ae4bb00265dec.tar.bz2 |
Now clearing the channel info display when entering numeric keys to switch channels
Diffstat (limited to 'menu.c')
-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.259 2003/06/15 12:25:47 kls Exp $ + * $Id: menu.c 1.260 2003/06/19 10:09:29 kls Exp $ */ #include "menu.h" @@ -2740,6 +2740,8 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key) number = number * 10 + Key - k0; if (number > 0) { cChannel *channel = Channels.GetByNumber(number); + Interface->Clear(); + withInfo = false; DisplayChannel(channel); lastTime = time_ms(); // Lets see if there can be any useful further input: |