summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-10-03 14:38:49 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-10-03 14:38:49 +0200
commit4eecc59ef8142fa35cc69b96f55df8e4d6f73225 (patch)
tree4ace64362e656e3e957cc37d0523905fe3564c67
parent80c822c1c583c5c118f9590f5ddadf08677bb0e7 (diff)
downloadvdr-4eecc59ef8142fa35cc69b96f55df8e4d6f73225.tar.gz
vdr-4eecc59ef8142fa35cc69b96f55df8e4d6f73225.tar.bz2
Fixed missing channel info after an incomplete channel group switch
-rw-r--r--CONTRIBUTORS3
-rw-r--r--HISTORY2
-rw-r--r--menu.c3
3 files changed, 7 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 8f794907..e76da0fd 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -824,3 +824,6 @@ Marco Franceschetti <ordaz@quipo.it>
Jens Groth <Jens_Groth@t-online.de>
for reporting a an outdated driver version number in INSTALL
+
+Andreas Trauer <vdr@trauers.homelinux.net>
+ for fixing missing channel info after an incomplete channel group switch
diff --git a/HISTORY b/HISTORY
index ab26c935..fc396678 100644
--- a/HISTORY
+++ b/HISTORY
@@ -2407,3 +2407,5 @@ Video Disk Recorder Revision History
- Updated the required driver version in INSTALL (thanks to Jens Groth for
reporting this one).
+- Fixed missing channel info after an incomplete channel group switch (thanks
+ to Andreas Trauer).
diff --git a/menu.c b/menu.c
index 9f8dea4d..72683c01 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.272 2003/09/14 10:49:28 kls Exp $
+ * $Id: menu.c 1.273 2003/10/03 14:36:20 kls Exp $
*/
#include "menu.h"
@@ -2823,6 +2823,7 @@ eOSState cDisplayChannel::ProcessKey(eKeys Key)
case kChanUp:
case kChanDn|k_Repeat:
case kChanDn:
+ withInfo = true;
group = -1;
Refresh();
break;