From 75f64f760e3980cc5b192024d788c144a5b9c4bf Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sun, 16 Dec 2018 01:17:01 +0100 Subject: [PATCH] - timerlist: fix return from RemoteBoxSelect() when no item is choosed Signed-off-by: Thilo Graf --- src/gui/timerlist.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/timerlist.cpp b/src/gui/timerlist.cpp index f00d5d0a8..278c6c45f 100644 --- a/src/gui/timerlist.cpp +++ b/src/gui/timerlist.cpp @@ -757,6 +757,9 @@ void CTimerList::RemoteBoxSelect() m->enableSaveScreen(); m->exec(NULL, ""); + if (!m->gotAction()) + return; + delete selector; }