1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-07-01 21:13:21 +00:00
dupeguru/cocoa/inter/prioritize_list.py

9 lines
284 B
Python

from cocoa.inter2 import PySelectableList2, SelectableListView
class PrioritizeListView(SelectableListView):
pass
class PyPrioritizeList(PySelectableList2):
def moveIndexes_toIndex_(self, indexes: list, dest_index: int):
self.model.move_indexes(indexes, dest_index)