diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-15 13:46:55 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-15 13:46:55 +0200 |
commit | 4611af4339ec571573b57a566985514bb2c2f381 (patch) | |
tree | 5370c79d8c06d00b8604fcd34f572362699fcec9 /vdr.c | |
parent | 12ea50fceba47cbfde1e11da4fff9aa5f5b2aeda (diff) | |
download | vdr-4611af4339ec571573b57a566985514bb2c2f381.tar.gz vdr-4611af4339ec571573b57a566985514bb2c2f381.tar.bz2 |
Implemented kNext and kPrev keys
Diffstat (limited to 'vdr.c')
-rw-r--r-- | vdr.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.258 2006/04/15 11:29:13 kls Exp $ + * $Id: vdr.c 1.259 2006/04/15 13:35:40 kls Exp $ */ #include <getopt.h> @@ -1061,11 +1061,16 @@ int main(int argc, char *argv[]) } // Direct Channel Select: case k1 ... k9: - // Left/Right rotates trough channel groups: + // Left/Right rotates through channel groups: case kLeft|k_Repeat: case kLeft: case kRight|k_Repeat: case kRight: + // Previous/Next rotates through channel groups: + case kPrev|k_Repeat: + case kPrev: + case kNext|k_Repeat: + case kNext: // Up/Down Channel Select: case kUp|k_Repeat: case kUp: |