diff options
author | Timo Eskola <timo@tolleri.net> | 2018-08-30 09:55:26 +0300 |
---|---|---|
committer | Timo Eskola <timo@tolleri.net> | 2018-08-30 09:55:26 +0300 |
commit | 26993c4f1d94646cbe1ad546524cee98d502303d (patch) | |
tree | 0b255d9d5101b31298a53eec45924ddd9f3d11b8 | |
parent | 1f68da4ab12ed7473208285fe7f98c8d0231a79b (diff) | |
parent | 4b0ca40aa424e39c843f63d27807695aa736b610 (diff) | |
download | vdr-plugin-duplicates-26993c4f1d94646cbe1ad546524cee98d502303d.tar.gz vdr-plugin-duplicates-26993c4f1d94646cbe1ad546524cee98d502303d.tar.bz2 |
Merge branch 'master' into vdr2.4.0
-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)) { |