CTimerList: remove timeout for delete warning

Timeout for deletions are not a really good idea. This should be
controlled by user and it should be durable visualized what
he just is doing.
This commit is contained in:
2016-12-08 12:12:36 +01:00
committed by Jacek Jendrzej
parent 36e1a98a1d
commit f8b295b818

View File

@@ -991,7 +991,7 @@ int CTimerList::show()
if (!epgdata.title.empty()) if (!epgdata.title.empty())
title = "(" + epgdata.title + ")\n"; title = "(" + epgdata.title + ")\n";
snprintf(buf1, sizeof(buf1)-1, g_Locale->getText(LOCALE_TIMERLIST_ASK_TO_DELETE), title.c_str()); snprintf(buf1, sizeof(buf1)-1, g_Locale->getText(LOCALE_TIMERLIST_ASK_TO_DELETE), title.c_str());
if (ShowMsg(LOCALE_RECORDINGMENU_RECORD_IS_RUNNING, buf1, CMsgBox::mbrYes, CMsgBox::mbYes | CMsgBox::mbNo, NULL, 450, 30, false) == CMsgBox::mbrNo) if (ShowMsg(LOCALE_RECORDINGMENU_RECORD_IS_RUNNING, buf1, CMsgBox::mbrNo, CMsgBox::mbYesNo, NULL, 450) & CMsgBox::mbrNo)
{ {
killTimer = false; killTimer = false;
update = false; update = false;