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:
@@ -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)
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user