Make kPlay start playback from recording list

Message ID 200710142242.08460.ville.skytta@iki.fi
State New
Headers

Commit Message

Ville Skyttä Oct. 14, 2007, 7:42 p.m. UTC
  Hello,

After about three years of VDR use, I still quite often try to start playback 
of a recording from the recordings view using the play button, swear for a 
bit, and then hit ok.  I couldn't think of a reason why play wouldn't start 
the playback, so here's a tiny patch against VDR 1.4.7 that implements it.
  

Comments

Matthias Schwarzott Oct. 14, 2007, 8:26 p.m. UTC | #1
On Sonntag, 14. Oktober 2007, Ville Skyttä wrote:
> Hello,
>
> After about three years of VDR use, I still quite often try to start
> playback of a recording from the recordings view using the play button,
> swear for a bit, and then hit ok.  I couldn't think of a reason why play
> wouldn't start the playback, so here's a tiny patch against VDR 1.4.7 that
> implements it.

That sounds almost like another issue I guess could be handled (but is more 
complicated).

Everytime there is a list of epg events (like Schedule menu) I try to press 
the "Info"-Key to open the details.
That could work also for timer-entries having an associated epg-event.

Matthias
  

Patch

--- menu.c~	2006-12-02 13:12:02.000000000 +0200
+++ menu.c	2007-10-14 22:03:06.000000000 +0300
@@ -2074,6 +2074,7 @@ 
 
   if (state == osUnknown) {
      switch (Key) {
+       case kPlay:
        case kOk:     return Play();
        case kRed:    return (helpKeys > 1 && RecordingCommands.Count()) ? Commands() : Play();
        case kGreen:  return Rewind();