mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
14 lines
401 B
Python
14 lines
401 B
Python
|
from hscommon.cocoa.inter import PyOutline
|
||
|
|
||
|
from core.gui.directory_tree import DirectoryTree
|
||
|
|
||
|
class PyDirectoryOutline(PyOutline):
|
||
|
py_class = DirectoryTree
|
||
|
|
||
|
def addDirectory_(self, path):
|
||
|
self.py.add_directory(path)
|
||
|
|
||
|
# python --> cocoa
|
||
|
def refresh_states(self):
|
||
|
# Under cocoa, both refresh() and refresh_states() do the same thing.
|
||
|
self.cocoa.refresh()
|