timerlist: fix return from RemoteBoxSelect() when no item is choosed

Origin commit data
------------------
Commit: 755fe81d8c
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-12-16 (Sun, 16 Dec 2018)

Origin message was:
------------------
- timerlist: fix return from RemoteBoxSelect() when no item is choosed
This commit is contained in:
vanhofen
2018-12-16 01:17:01 +01:00
parent 61febf5dad
commit 8e33547e37

View File

@@ -757,6 +757,9 @@ void CTimerList::RemoteBoxSelect()
m->enableSaveScreen(); m->enableSaveScreen();
m->exec(NULL, ""); m->exec(NULL, "");
if (!m->gotAction())
return;
delete selector; delete selector;
} }