diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-24 14:55:20 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-24 14:55:20 +0100 |
commit | 3d9654a22f900a25b4a03d8c1756b3b878872a9b (patch) | |
tree | 743dbf2097c01ad70ff9e7cc8f853c8c9c232b16 | |
parent | f40a6e9b85065badb97b1b9c43d56b0e8a8da26f (diff) | |
download | vdr-3d9654a22f900a25b4a03d8c1756b3b878872a9b.tar.gz vdr-3d9654a22f900a25b4a03d8c1756b3b878872a9b.tar.bz2 |
Fixed removing the '-' when entering a channel number where there is no other one that fits the input
-rw-r--r-- | CONTRIBUTORS | 2 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | menu.c | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 1525fb66..f4da9c69 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1413,6 +1413,8 @@ Joachim Wilke <vdr@joachim-wilke.de> for reporting missing calls to cStatus::MsgOsdClear() in cSkins::Message() for fixing a NULL pointer access with the cUnbufferedFile when a replay session runs all the way until the end of the recording + for fixing removing the '-' when entering a channel number where there is no other + one that fits the input Sascha Klek <sklek@gmx.de> for reporting a problem with the '0' key in the "Day" item of the "Timers" menu @@ -4365,3 +4365,5 @@ Video Disk Recorder Revision History - Fixed setting the audio language codes in 'Transfer-Mode' (reported by Rolf Ahrenberg). The actual problem was the call to the Transferring() function in cDevice::AttachPlayer() before assigning the player. +- Fixed removing the '-' when entering a channel number where there is no other + one that fits the input (thanks to Joachim Wilke). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.413 2006/02/19 10:18:28 kls Exp $ + * $Id: menu.c 1.414 2006/02/24 14:55:10 kls Exp $ */ #include "menu.h" @@ -3131,10 +3131,10 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key) } if (n > 0) { // This channel is the only one that fits the input, so let's take it right away: - displayChannel->Flush(); // makes sure the user sees his last input NewChannel = channel; withInfo = true; number = 0; + Refresh(); } } break; |