diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-25 12:22:02 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-02-25 12:22:02 +0100 |
commit | 60e937f57bafb8dea3bb5fc8097afb4b132db6c6 (patch) | |
tree | b0774b80d7cca95a648e2d016c7ad9c576b0a6ef /menu.c | |
parent | bc2e59909fed6772360effd9d11ccae65af26a02 (diff) | |
download | vdr-60e937f57bafb8dea3bb5fc8097afb4b132db6c6.tar.gz vdr-60e937f57bafb8dea3bb5fc8097afb4b132db6c6.tar.bz2 |
The upper 16 bit of a timer's "flags" are no longer treated specially when a timer is modified in the "Edit timer" menu
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.417 2006/02/25 12:09:22 kls Exp $ + * $Id: menu.c 1.418 2006/02/25 12:16:34 kls Exp $ */ #include "menu.h" @@ -686,11 +686,8 @@ eOSState cMenuEditTimer::ProcessKey(eKeys Key) if (!*data.file) strcpy(data.file, data.Channel()->ShortName(true)); if (timer) { - if (memcmp(timer, &data, sizeof(data)) != 0) { + if (memcmp(timer, &data, sizeof(data)) != 0) *timer = data; - if (timer->HasFlags(tfActive)) - timer->ClrFlags(~tfAll); // allows external programs to mark active timers with values > 0xFFFF and recognize if the user has modified them - } if (addIfConfirmed) Timers.Add(timer); timer->Matches(); |