From 1913136d4f78ddac576bd2c286b0f9ff0313c559 Mon Sep 17 00:00:00 2001 From: singerdmx Date: Thu, 14 Jan 2021 20:59:46 -0800 Subject: [PATCH] Flip checkbox only tapping at the beginning of text line --- lib/widgets/editor.dart | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index e698094c..fe8df8a5 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -363,14 +363,16 @@ class _QuillEditorSelectionGestureDetectorBuilder return; } if (!getEditor().widget.readOnly && - segment.parent.style.containsKey(Attribute.list.key)) { + segment.parent.style.containsKey(Attribute.list.key) && + segmentResult.offset == 0) { + // segmentResult.offset == 0 means tap at the beginning of the TextLine String listVal = segment.parent.style.attributes[Attribute.list.key].value; - if (listVal == "unchecked") { + if (listVal == Attribute.unchecked.value) { segment.parent.style.attributes .update(Attribute.list.key, (value) => Attribute.checked); getEditor().widget.controller.notifyChangeListeners(); - } else if (listVal == "checked") { + } else if (listVal == Attribute.checked.value) { segment.parent.style.attributes .update(Attribute.list.key, (value) => Attribute.unchecked); getEditor().widget.controller.notifyChangeListeners();