1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2025-03-10 13:44:37 +00:00
dupeguru-cocoa/cocoa/inter/prioritize_list.py

9 lines
281 B
Python
Raw Normal View History

2017-03-11 20:18:27 -05:00
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)