From 7718b010f7ff7de916cee7b8de1df32ba7d68392 Mon Sep 17 00:00:00 2001 From: GetAway Date: Sun, 25 Feb 2018 20:00:30 +0100 Subject: [PATCH] timerlist: fix double drawing of timer list Signed-off-by: Thilo Graf --- 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 7c2bf2713..86874650f 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; } } }