mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The "Play" key now starts replay of the selected recording in the Recordings menu
This commit is contained in:
parent
eca4c9fcea
commit
eeaa969186
@ -1710,6 +1710,8 @@ Ville Skytt
|
||||
for suggesting to add the "...or (at your option) any later version" phrase to the
|
||||
license information of all plugins, and also the 'newplugin' script
|
||||
for fixing the link to the GPL2 at http://www.gnu.org in vdr.c
|
||||
for making the "Play" key start replay of the selected recording in the Recordings
|
||||
menu
|
||||
|
||||
Steffen Beyer <cpunk@reactor.de>
|
||||
for fixing setting the colored button help after deleting a recording in case the next
|
||||
|
2
HISTORY
2
HISTORY
@ -5495,3 +5495,5 @@ Video Disk Recorder Revision History
|
||||
- Updated the French OSD texts (thanks to Michael Nival).
|
||||
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
||||
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
||||
- The "Play" key now starts replay of the selected recording in the Recordings
|
||||
menu (thanks to Ville Skyttä);
|
||||
|
3
menu.c
3
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.463 2007/10/13 10:10:20 kls Exp $
|
||||
* $Id: menu.c 1.464 2007/10/19 14:20:15 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@ -2107,6 +2107,7 @@ eOSState cMenuRecordings::ProcessKey(eKeys Key)
|
||||
|
||||
if (state == osUnknown) {
|
||||
switch (Key) {
|
||||
case kPlay:
|
||||
case kOk: return Play();
|
||||
case kRed: return (helpKeys > 1 && RecordingCommands.Count()) ? Commands() : Play();
|
||||
case kGreen: return Rewind();
|
||||
|
Loading…
Reference in New Issue
Block a user