mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
55db21f3e0
--HG-- branch : objp
9 lines
281 B
Python
9 lines
281 B
Python
from cocoa.inter import PySelectableList, SelectableListView
|
|
|
|
class PrioritizeListView(SelectableListView):
|
|
pass
|
|
|
|
class PyPrioritizeList(PySelectableList):
|
|
def moveIndexes_toIndex_(self, indexes: list, dest_index: int):
|
|
self.model.move_indexes(indexes, dest_index)
|