mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 18:21:05 +02:00
Added setting custom sorting on move to top/bottom
This commit is contained in:
parent
c4bdeb9b76
commit
ab632e1cf5
@ -151,6 +151,7 @@ class ChecklistAdapter(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun moveSelectedItemsToTop() {
|
private fun moveSelectedItemsToTop() {
|
||||||
|
activity.config.sorting = SORT_BY_CUSTOM
|
||||||
selectedKeys.reversed().forEach { checklistId ->
|
selectedKeys.reversed().forEach { checklistId ->
|
||||||
val position = items.indexOfFirst { it.id == checklistId }
|
val position = items.indexOfFirst { it.id == checklistId }
|
||||||
val tempItem = items[position]
|
val tempItem = items[position]
|
||||||
@ -163,6 +164,7 @@ class ChecklistAdapter(
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun moveSelectedItemsToBottom() {
|
private fun moveSelectedItemsToBottom() {
|
||||||
|
activity.config.sorting = SORT_BY_CUSTOM
|
||||||
selectedKeys.forEach { checklistId ->
|
selectedKeys.forEach { checklistId ->
|
||||||
val position = items.indexOfFirst { it.id == checklistId }
|
val position = items.indexOfFirst { it.id == checklistId }
|
||||||
val tempItem = items[position]
|
val tempItem = items[position]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user