summaryrefslogtreecommitdiff
path: root/vdr.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-10-03 14:06:44 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-10-03 14:06:44 +0200
commit48613fdb1498ce55c474baeb4ce84e592c2d72f5 (patch)
treef14758e75994f47d2ef232a50eec7987ae32b3a0 /vdr.c
parent1c9122ae03f02f184a3fa0f1a09c62fa7a571e7c (diff)
downloadvdr-48613fdb1498ce55c474baeb4ce84e592c2d72f5.tar.gz
vdr-48613fdb1498ce55c474baeb4ce84e592c2d72f5.tar.bz2
Implemented toggling between current and previous channel
Diffstat (limited to 'vdr.c')
-rw-r--r--vdr.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/vdr.c b/vdr.c
index 91643c2f..042b03ce 100644
--- a/vdr.c
+++ b/vdr.c
@@ -22,7 +22,7 @@
*
* The project's page is at http://www.cadsoft.de/people/kls/vdr
*
- * $Id: vdr.c 1.35 2000/09/20 16:45:01 kls Exp $
+ * $Id: vdr.c 1.36 2000/10/03 13:52:26 kls Exp $
*/
#include <getopt.h>
@@ -193,12 +193,14 @@ int main(int argc, char *argv[])
cOsdBase *Menu = NULL;
cReplayControl *ReplayControl = NULL;
int LastChannel = -1;
+ int PreviousChannel = CurrentChannel;
while (!Interrupted) {
// Channel display:
if (CurrentChannel != LastChannel) {
if (!Menu)
Channels.ShowChannel(CurrentChannel, LastChannel > 0);
+ PreviousChannel = LastChannel;
LastChannel = CurrentChannel;
}
// Timers and Recordings:
@@ -244,8 +246,13 @@ int main(int argc, char *argv[])
}
else {
switch (key) {
+ // Toggle channels:
+ case k0:
+ if (PreviousChannel != CurrentChannel)
+ Channels.SwitchTo(PreviousChannel);
+ break;
// Direct Channel Select:
- case k0: case k1: case k2: case k3: case k4: case k5: case k6: case k7: case k8: case k9:
+ case k1 ... k9:
if (!Interface.Recording())
Menu = new cDirectChannelSelect(key);
break;