diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-09-10 13:29:30 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-09-10 13:29:30 +0200 |
commit | 1cdbdc548a8513791dc531adb9ee95b527071986 (patch) | |
tree | 6fe11056d783c840ef84534513b5b662e15e07f3 | |
parent | 0f18bd0a6a9ce0e62fc9bcbc4339f63eee2855fc (diff) | |
download | vdr-1cdbdc548a8513791dc531adb9ee95b527071986.tar.gz vdr-1cdbdc548a8513791dc531adb9ee95b527071986.tar.bz2 |
Fixed sorting recordings
-rw-r--r-- | menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 4.6 2015/09/10 10:34:45 kls Exp $ + * $Id: menu.c 4.7 2015/09/10 13:29:30 kls Exp $ */ #include "menu.h" @@ -3147,6 +3147,7 @@ eOSState cMenuRecordings::Sort(void) if (HasSubMenu()) return osContinue; IncRecordingsSortMode(DirectoryName()); + recordingsStateKey.Reset(); Set(true); return osContinue; } |