mirror of
https://github.com/arsenetar/dupeguru-cocoa.git
synced 2025-03-10 13:44:37 +00:00
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)
|