fix #298, properly save checklist values at renaming

This commit is contained in:
tibbi
2019-10-28 11:31:36 +01:00
parent 2667cc4d64
commit bbc14d4aae
3 changed files with 11 additions and 2 deletions

View File

@ -57,6 +57,8 @@ class NotesPagerAdapter(fm: FragmentManager, val notes: List<Note>, val activity
fun saveAllFragmentTexts() = fragments.values.forEach { (it as? TextFragment)?.saveText(false) }
fun getNoteChecklistItems(position: Int) = (fragments[position] as? ChecklistFragment)?.getChecklistItems()
fun undo(position: Int) = (fragments[position] as? TextFragment)?.undo()
fun redo(position: Int) = (fragments[position] as? TextFragment)?.redo()