summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2014-01-29 10:51:18 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2014-01-29 10:51:18 +0100
commitc1ddb5240529ea8b3388808bce682248a07a2dd5 (patch)
tree09e69cd00eba0fe99e5288992d3125a300777604 /menu.c
parent9e9219d8fba26ffa997cac98315e899fa0e53e7c (diff)
downloadvdr-c1ddb5240529ea8b3388808bce682248a07a2dd5.tar.gz
vdr-c1ddb5240529ea8b3388808bce682248a07a2dd5.tar.bz2
Fixed sorting recordings by time in the Recordings menu if "Setup/OSD/Recording directories" is set to "no"
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index 44f00550..6935838e 100644
--- a/menu.c
+++ b/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 2.82.1.5 2013/10/16 09:46:24 kls Exp $
+ * $Id: menu.c 2.82.1.6 2014/01/29 10:48:02 kls Exp $
*/
#include "menu.h"
@@ -2648,7 +2648,7 @@ eOSState cMenuSetupOSD::ProcessKey(eKeys Key)
ModifiedAppearance = true;
if (strcmp(data.FontFix, Setup.FontFix) || !DoubleEqual(data.FontFixSizeP, Setup.FontFixSizeP))
ModifiedAppearance = true;
- if (data.AlwaysSortFoldersFirst != Setup.AlwaysSortFoldersFirst)
+ if (data.AlwaysSortFoldersFirst != Setup.AlwaysSortFoldersFirst || data.RecordingDirs != Setup.RecordingDirs)
Recordings.ClearSortNames();
}