mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
55db21f3e0
--HG-- branch : objp
10 lines
255 B
Python
10 lines
255 B
Python
from objp.util import pyref
|
|
from cocoa.inter import PyGUIObject
|
|
|
|
class PyProblemDialog(PyGUIObject):
|
|
def problemTable(self) -> pyref:
|
|
return self.model.problem_table
|
|
|
|
def revealSelected(self):
|
|
self.model.reveal_selected_dupe()
|