From 9a2c802031d6f34074135400b72b3653e46044d0 Mon Sep 17 00:00:00 2001 From: GetAway Date: Thu, 1 Mar 2018 12:55:03 +0100 Subject: [PATCH] timerlist: fix double drawing of timer list Signed-off-by: Thilo Graf Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/b10e5f9231e11070f44b681da61f1610909c80a2 Author: GetAway Date: 2018-03-01 (Thu, 01 Mar 2018) ------------------ This commit was generated by Migit --- src/gui/timerlist.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gui/timerlist.cpp b/src/gui/timerlist.cpp index 0559bc310..22f71d31e 100644 --- a/src/gui/timerlist.cpp +++ b/src/gui/timerlist.cpp @@ -1046,14 +1046,13 @@ int CTimerList::show() if (timer->epgID != 0) { res = g_EpgData->show(timer->channel_id, timer->epgID, &timer->epg_starttime); - update = true; } else ShowHint(LOCALE_MESSAGEBOX_INFO, LOCALE_EPGVIEWER_NOTFOUND); if (res == menu_return::RETURN_EXIT_ALL) loop = false; else - paint(); + update = true; } } }