diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-29 10:51:18 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-29 10:51:18 +0100 |
commit | c1ddb5240529ea8b3388808bce682248a07a2dd5 (patch) | |
tree | 09e69cd00eba0fe99e5288992d3125a300777604 /menu.c | |
parent | 9e9219d8fba26ffa997cac98315e899fa0e53e7c (diff) | |
download | vdr-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); } |