mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 13:44:37 +00:00
10 lines
231 B
Python
10 lines
231 B
Python
from cocoa.inter import PyGUIObject
|
|
|
|
from core.gui.problem_dialog import ProblemDialog
|
|
|
|
class PyProblemDialog(PyGUIObject):
|
|
py_class = ProblemDialog
|
|
|
|
def revealSelected(self):
|
|
self.py.reveal_selected_dupe()
|
|
|