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

Fixed broken actions: reveal_path in problems dialog and copy/move under Qt.

This commit is contained in:
Virgil Dupras
2011-10-02 10:27:40 -04:00
parent b6d66f6d0b
commit 436a8e686d
3 changed files with 4 additions and 5 deletions

View File

@@ -148,7 +148,7 @@ class DupeGuru(QObject):
if not destination:
return
recreate_path = self.prefs.destination_type
self.model.copy_or_move_marked(self, copy, destination, recreate_path)
self.model.copy_or_move_marked(copy, destination, recreate_path)
def remove_selected(self):
dupes = self.model.without_ref(self.model.selected_dupes)

View File

@@ -250,7 +250,7 @@ class ResultWindow(QMainWindow):
QMessageBox.information(self, title, trmsg("IgnoreListClearedMsg"))
def copyTriggered(self):
self.app.model.copy_or_move_marked(True)
self.app.copy_or_move_marked(True)
def deleteTriggered(self):
count = self.app.model.results.mark_count
@@ -302,7 +302,7 @@ class ResultWindow(QMainWindow):
self.app.model.toggle_selected_mark_state()
def moveTriggered(self):
self.app.model.copy_or_move_marked(False)
self.app.copy_or_move_marked(False)
def openTriggered(self):
self.app.model.open_selected()