summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-08-09 10:19:33 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-08-09 10:19:33 +0200
commitd369eb9408763557f378498734b7c3cc234f895d (patch)
tree96728ef2a129a35873de8d718ae75fd0491d5e8e
parentb9a8abbe93f1cc404dc415785bf7a2743111bbab (diff)
downloadvdr-d369eb9408763557f378498734b7c3cc234f895d.tar.gz
vdr-d369eb9408763557f378498734b7c3cc234f895d.tar.bz2
Fixed keeping track of the current channel number when moving channels in the "Channels" menu
-rw-r--r--CONTRIBUTORS2
-rw-r--r--HISTORY4
-rw-r--r--menu.c6
3 files changed, 10 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 80386477..c9f82f61 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -328,6 +328,8 @@ Bernd Schweikert <bernd.schweikert@dit-gmbh.de>
Mirko Günther <mi.guenther@ib-helms.de>
for suggesting the -m command line option
for suggesting the SVDRP command VOLU
+ for reporting a bug in keeping track of the current channel number when moving
+ channels in the "Channels" menu
Achim Lange <Achim_Lange@t-online.de>
for replacing 'killproc' with 'killall' in 'runvdr' to make it work on Debian
diff --git a/HISTORY b/HISTORY
index 3181d090..59f35c15 100644
--- a/HISTORY
+++ b/HISTORY
@@ -2283,7 +2283,9 @@ Video Disk Recorder Revision History
or Makefile.config as defaults (thanks to Steffen Barszus).
- Added the usual menu timeout to the CAM menus.
-2003-08-06: Version 1.2.3
+2003-08-09: Version 1.2.3
- Fixed the TS to PES repacker so that it works with MPEG1 streams (thanks to
Andreas Kool).
+- Fixed keeping track of the current channel number when moving channels in
+ the "Channels" menu (thanks to Mirko Günther for reporting this one).
diff --git a/menu.c b/menu.c
index b29961e4..6dcb2362 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.264 2003/08/03 09:38:37 kls Exp $
+ * $Id: menu.c 1.265 2003/08/09 10:14:44 kls Exp $
*/
#include "menu.h"
@@ -763,6 +763,8 @@ eOSState cMenuChannels::Delete(void)
void cMenuChannels::Move(int From, int To)
{
+ int CurrentChannelNr = cDevice::CurrentChannel();
+ cChannel *CurrentChannel = Channels.GetByNumber(CurrentChannelNr);
cChannel *FromChannel = GetChannel(From);
cChannel *ToChannel = GetChannel(To);
if (FromChannel && ToChannel) {
@@ -772,6 +774,8 @@ void cMenuChannels::Move(int From, int To)
cOsdMenu::Move(From, To);
Propagate();
isyslog("channel %d moved to %d", FromNumber, ToNumber);
+ if (CurrentChannel && CurrentChannel->Number() != CurrentChannelNr)
+ Channels.SwitchTo(CurrentChannel->Number());
}
}