mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
01f1e5e46e
--HG-- branch : objp
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()
|
|
|