diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-12 13:16:15 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-12 13:16:15 +0100 |
commit | 027ec5a63f315596253ac77bfc81929d0de26903 (patch) | |
tree | 6684c9b4b98010c91d12f73c851e44bd9cebb1b2 | |
parent | 4aaaa97ade72c8cb7769adfd2b186fd237557e8f (diff) | |
download | vdr-027ec5a63f315596253ac77bfc81929d0de26903.tar.gz vdr-027ec5a63f315596253ac77bfc81929d0de26903.tar.bz2 |
Fixed selecting the last replayed recording in the Recordings menu
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | menu.c | 6 |
3 files changed, 10 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index d77bdab0..4692c749 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2248,6 +2248,9 @@ André Weidemann <Andre.Weidemann@web.de> 1.7.32 no longer generates a mark at that point for suggesting to automatically go into Pause mode if an editing mark is set during replay + fpr reporting a bug in selecting the last replayed recording in the Recordings menu + in case there are folders and plain recordings with names that differ only in + non-alphanumeric characters Jürgen Schilling <juergen_schilling@web.de> for reporting that color buttons were displayed in the recording info menu if it @@ -7600,3 +7600,6 @@ Video Disk Recorder Revision History - Updated the Italian OSD texts (thanks to Diego Pierotto). - Fixed using "Pause" and "Slow motion" near the end of a recording (replay stopped a few seconds after the end of the recording file has been reached). +- Fixed selecting the last replayed recording in the Recordings menu in case there + are folders and plain recordings with names that differ only in non-alphanumeric + characters (reported by Andre Weidemann). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 2.77 2013/02/11 11:08:54 kls Exp $ + * $Id: menu.c 2.78 2013/02/12 13:10:53 kls Exp $ */ #include "menu.h" @@ -2306,8 +2306,10 @@ void cMenuRecordings::Set(bool Refresh) if (CurrentRecording && strcmp(CurrentRecording, recording->FileName()) == 0) SetCurrent(LastItem); } - if (LastDir) + if (LastDir) { LastDir->IncrementCounter(recording->IsNew()); + LastItem = LastDir; + } } } if (Refresh) |