diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | menu.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -5,6 +5,10 @@ VDR Plugin 'duplicates' Revision History - Dropped support for VDR 2.2.0. - Added scanner thread for duplicates. +2018-08-30: Version 0.2.1 + +- Fixed menu updating bug introduced in version 0.2.0. + 2018-08-29: Version 0.2.0 - Fixed compilation with VDR 2.4.0. @@ -154,6 +154,7 @@ void cMenuDuplicates::Set(bool Refresh) { currentIndex = Current(); else CurrentRecording = cReplayControl::LastReplayed(); + Clear(); for (cDuplicateRecording *Duplicates = DuplicateRecordings.First(); Duplicates; Duplicates = DuplicateRecordings.Next(Duplicates)) { Add(SeparatorItem(Duplicates->Text())); for (cDuplicateRecording *Duplicate = Duplicates->Duplicates()->First(); Duplicate; Duplicate = Duplicates->Duplicates()->Next(Duplicate)) { |