Move selected items to bottom by default

This commit is contained in:
Naveen Singh
2024-07-18 23:03:50 +05:30
parent 508a401b0e
commit 49f5d48ecf

View File

@@ -76,7 +76,7 @@ class Config(context: Context) : BaseConfig(context) {
set(lastCreatedNoteType) = prefs.edit().putInt(LAST_CREATED_NOTE_TYPE, lastCreatedNoteType).apply()
var moveDoneChecklistItems: Boolean
get() = prefs.getBoolean(MOVE_DONE_CHECKLIST_ITEMS, false)
get() = prefs.getBoolean(MOVE_DONE_CHECKLIST_ITEMS, true)
set(moveDoneChecklistItems) = prefs.edit().putBoolean(MOVE_DONE_CHECKLIST_ITEMS, moveDoneChecklistItems).apply()
fun getTextGravity() = when (gravity) {