1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Remove Marked now correctly updates the results.

This commit is contained in:
Virgil Dupras
2010-02-12 13:39:50 +01:00
parent fd89cf2482
commit 33d44d4d24
2 changed files with 6 additions and 2 deletions

View File

@@ -278,6 +278,10 @@ class DupeGuru(RegistrableApplication, Broadcaster):
self.results.remove_duplicates(duplicates)
self.notify('results_changed')
def remove_marked(self):
self.results.perform_on_marked(lambda x:True, True)
self.notify('results_changed')
def remove_selected(self):
self.remove_duplicates(self.selected_dupes)