mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Added a missing Channels.SetModified(true) call when deleting or moving a channel in the Channels menu
This commit is contained in:
4
menu.c
4
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 1.462 2007/10/12 14:30:29 kls Exp $
|
||||
* $Id: menu.c 1.463 2007/10/13 10:10:20 kls Exp $
|
||||
*/
|
||||
|
||||
#include "menu.h"
|
||||
@@ -525,6 +525,7 @@ eOSState cMenuChannels::Delete(void)
|
||||
Channels.Del(channel);
|
||||
cOsdMenu::Del(Index);
|
||||
Propagate();
|
||||
Channels.SetModified(true);
|
||||
isyslog("channel %d deleted", DeletedChannel);
|
||||
if (CurrentChannel && CurrentChannel->Number() != CurrentChannelNr) {
|
||||
if (!cDevice::PrimaryDevice()->Replaying() || cDevice::PrimaryDevice()->Transferring())
|
||||
@@ -549,6 +550,7 @@ void cMenuChannels::Move(int From, int To)
|
||||
Channels.Move(FromChannel, ToChannel);
|
||||
cOsdMenu::Move(From, To);
|
||||
Propagate();
|
||||
Channels.SetModified(true);
|
||||
isyslog("channel %d moved to %d", FromNumber, ToNumber);
|
||||
if (CurrentChannel && CurrentChannel->Number() != CurrentChannelNr) {
|
||||
if (!cDevice::PrimaryDevice()->Replaying() || cDevice::PrimaryDevice()->Transferring())
|
||||
|
Reference in New Issue
Block a user