mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-19 05:19:03 +00:00
4c8ce4b52d
--HG-- branch : objp
11 lines
334 B
Python
11 lines
334 B
Python
from cocoa.inter2 import PySelectableList2, SelectableListView
|
|
|
|
class PrioritizeListView(SelectableListView):
|
|
pass
|
|
|
|
class PyPrioritizeList(PySelectableList2):
|
|
FOLLOW_PROTOCOLS = ['PySelectableList2']
|
|
|
|
def moveIndexes_toIndex_(self, indexes: list, dest_index: int):
|
|
self.model.move_indexes(indexes, dest_index)
|