diff --git a/lib/models/documents/nodes/node.dart b/lib/models/documents/nodes/node.dart index cf74324b..6327a1bf 100644 --- a/lib/models/documents/nodes/node.dart +++ b/lib/models/documents/nodes/node.dart @@ -44,7 +44,7 @@ abstract class Node extends LinkedListEntry { int getOffset() { int offset = 0; - if (isFirst) { + if (list == null || isFirst) { return offset; } diff --git a/lib/widgets/controller.dart b/lib/widgets/controller.dart index 1f46d9b3..9ce00ca8 100644 --- a/lib/widgets/controller.dart +++ b/lib/widgets/controller.dart @@ -64,10 +64,6 @@ class QuillController extends ChangeNotifier { } } - void notifyChangeListeners() { - notifyListeners(); - } - void redo() { Tuple2 tup = document.redo(); if (tup.item1) { diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index 8ebee97c..23d14dea 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -379,14 +379,12 @@ class _QuillEditorSelectionGestureDetectorBuilder } // segmentResult.offset == 0 means tap at the beginning of the TextLine String listVal = line.style.attributes[Attribute.list.key].value; + // TODO: check getEditor().widget.controller.selection + // Maybe use formatText instead if (listVal == Attribute.unchecked.value) { - line.style.attributes - .update(Attribute.list.key, (value) => Attribute.checked); - getEditor().widget.controller.notifyChangeListeners(); + getEditor().widget.controller.formatSelection(Attribute.checked); } else if (listVal == Attribute.checked.value) { - line.style.attributes - .update(Attribute.list.key, (value) => Attribute.unchecked); - getEditor().widget.controller.notifyChangeListeners(); + getEditor().widget.controller.formatSelection(Attribute.unchecked); } return true; }