diff options
| author | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-01 13:51:25 +0200 | 
|---|---|---|
| committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-09-01 13:51:25 +0200 | 
| commit | e2701822e83dbdb893e60ab556dbb0cbc7b3af21 (patch) | |
| tree | 24111647b2b5b0075e7710bdd270456f5dc8350f | |
| parent | 7fd56f7d6fc62540ae6c3ff2b0b7ef5c79b00974 (diff) | |
| download | vdr-e2701822e83dbdb893e60ab556dbb0cbc7b3af21.tar.gz vdr-e2701822e83dbdb893e60ab556dbb0cbc7b3af21.tar.bz2 | |
Fixed 'Channel locked' message if recording is running on primary interface
| -rw-r--r-- | HISTORY | 2 | ||||
| -rw-r--r-- | vdr.c | 41 | 
2 files changed, 22 insertions, 21 deletions
| @@ -689,3 +689,5 @@ Video Disk Recorder Revision History    to 0x15E on the newer keyboards).  - When a recording is edited, the summary information (if present) is now    also copied. +- When a recording is running on the primary interface, any attempt to change +  the current channel will now lead to a "Channel locked" message. @@ -22,7 +22,7 @@   *   * The project's page is at http://www.cadsoft.de/people/kls/vdr   * - * $Id: vdr.c 1.66 2001/09/01 11:44:08 kls Exp $ + * $Id: vdr.c 1.67 2001/09/01 13:48:44 kls Exp $   */  #define _GNU_SOURCE @@ -395,35 +395,34 @@ int main(int argc, char *argv[])                    break;               // Direct Channel Select:               case k1 ... k9: -                  if (!Interface->Recording()) -                     Menu = new cDisplayChannel(key); +                  Menu = new cDisplayChannel(key);                    break;               // Left/Right rotates trough channel groups:               case kLeft|k_Repeat:               case kLeft:               case kRight|k_Repeat: -             case kRight: if (!Interface->Recording()) { -                             int SaveGroup = CurrentGroup; -                             if (NORMALKEY(key) == kRight) -                                CurrentGroup = Channels.GetNextGroup(CurrentGroup) ; -                             else -                                CurrentGroup = Channels.GetPrevGroup(CurrentGroup < 1 ? 1 : CurrentGroup); -                             if (CurrentGroup < 0) -                                CurrentGroup = SaveGroup; -                             Menu = new cDisplayChannel(CurrentGroup, false, true); -                             } -                          break; +             case kRight: { +                  int SaveGroup = CurrentGroup; +                  if (NORMALKEY(key) == kRight) +                     CurrentGroup = Channels.GetNextGroup(CurrentGroup) ; +                  else +                     CurrentGroup = Channels.GetPrevGroup(CurrentGroup < 1 ? 1 : CurrentGroup); +                  if (CurrentGroup < 0) +                     CurrentGroup = SaveGroup; +                  Menu = new cDisplayChannel(CurrentGroup, false, true); +                  break; +                  }               // Up/Down Channel Select:               case kUp|k_Repeat:               case kUp:               case kDown|k_Repeat: -             case kDown: if (!Interface->Recording()) { -                            int n = cDvbApi::CurrentChannel() + (NORMALKEY(key) == kUp ? 1 : -1); -                            cChannel *channel = Channels.GetByNumber(n); -                            if (channel) -                               channel->Switch(); -                            } -                         break; +             case kDown: { +                  int n = cDvbApi::CurrentChannel() + (NORMALKEY(key) == kUp ? 1 : -1); +                  cChannel *channel = Channels.GetByNumber(n); +                  if (channel) +                     channel->Switch(); +                  break; +                  }               // Menu Control:               case kMenu: Menu = new cMenuMain(ReplayControl); break;               // Viewing Control: | 
