removing the setting related to creating new checklist items at the top

This commit is contained in:
tibbi
2021-11-17 21:31:43 +01:00
parent 4a5b8cd2dd
commit fa938fe792
5 changed files with 8 additions and 16 deletions

View File

@ -147,12 +147,7 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
}
}
if (config?.addNewChecklistItemsTop == true) {
items.addAll(0, newItems)
} else {
items.addAll(newItems)
}
items.addAll(newItems)
saveNote()
setupAdapter()
}