mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-06-05 17:00:23 +02:00
tweaking a string to make it clearer
This commit is contained in:
@ -75,9 +75,9 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
get() = prefs.getInt(LAST_CREATED_NOTE_TYPE, NoteType.TYPE_TEXT.value)
|
||||
set(lastCreatedNoteType) = prefs.edit().putInt(LAST_CREATED_NOTE_TYPE, lastCreatedNoteType).apply()
|
||||
|
||||
var moveUndoneChecklistItems: Boolean
|
||||
get() = prefs.getBoolean(MOVE_UNDONE_CHECKLIST_ITEMS, false)
|
||||
set(moveUndoneChecklistItems) = prefs.edit().putBoolean(MOVE_UNDONE_CHECKLIST_ITEMS, moveUndoneChecklistItems).apply()
|
||||
var moveDoneChecklistItems: Boolean
|
||||
get() = prefs.getBoolean(MOVE_DONE_CHECKLIST_ITEMS, false)
|
||||
set(moveDoneChecklistItems) = prefs.edit().putBoolean(MOVE_DONE_CHECKLIST_ITEMS, moveDoneChecklistItems).apply()
|
||||
|
||||
@SuppressLint("RtlHardcoded")
|
||||
fun getTextGravity() = when (gravity) {
|
||||
|
@ -29,7 +29,7 @@ const val LAST_USED_SAVE_PATH = "last_used_save_path"
|
||||
const val ENABLE_LINE_WRAP = "enable_line_wrap"
|
||||
const val USE_INCOGNITO_MODE = "use_incognito_mode"
|
||||
const val LAST_CREATED_NOTE_TYPE = "last_created_note_type"
|
||||
const val MOVE_UNDONE_CHECKLIST_ITEMS = "move_undone_checklist_items"
|
||||
const val MOVE_DONE_CHECKLIST_ITEMS = "move_undone_checklist_items" // it has been replaced from moving undone items at the top to moving done to bottom
|
||||
const val FONT_SIZE_PERCENTAGE = "font_size_percentage"
|
||||
|
||||
// gravity
|
||||
|
Reference in New Issue
Block a user