mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
10 lines
240 B
Python
10 lines
240 B
Python
|
from hscommon.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()
|
||
|
|