diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-08-06 19:02:29 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-08-06 19:05:42 +0200 |
commit | 435a74d9cf1970b0e58d1c1fe031861fd9169826 (patch) | |
tree | f2c4418caddf7202d0a16d41ed861b04d0d491b2 | |
parent | fc47c35beae3e80e67ac3dba5195299182ab78e7 (diff) | |
download | vdr-plugin-tvguide-435a74d9cf1970b0e58d1c1fe031861fd9169826.tar.gz vdr-plugin-tvguide-435a74d9cf1970b0e58d1c1fe031861fd9169826.tar.bz2 |
Version 1.3.3v1.3.3
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | recmenuview.c | 2 | ||||
-rw-r--r-- | tvguide.c | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -278,3 +278,7 @@ Version 1.3.2 - Add "Timer On/Off" to recmenu - Wrap title in detailview header - Optional deactivation of the timer confirmation messages + +Version 1.3.3 + +- Bugfix diff --git a/recmenuview.c b/recmenuview.c index 420c5a6..54cd7e5 100644 --- a/recmenuview.c +++ b/recmenuview.c @@ -121,7 +121,7 @@ bool cRecMenuView::DisplayTimerConflict(int timerID) { cTVGuideTimerConflict *conflict = timerConflicts->GetCurrentConflict(); if (!conflict) return false; -// delete activeMenu; + delete activeMenu; activeMenu = new cRecMenuTimerConflict(conflict, rmsIgnoreTimerConflict); activeMenu->Display(); return true; @@ -27,7 +27,7 @@ #error "VDR-2.0.0 API version or greater is required!" #endif -static const char *VERSION = "1.3.2"; +static const char *VERSION = "1.3.3"; static const char *DESCRIPTION = tr("A fancy 2d EPG Viewer"); static const char *MAINMENUENTRY = "Tvguide"; |