Upgrade to 7.1.4

pull/1177/head
X Code 2 years ago
parent 871b413544
commit e90e6eb70d
  1. 3
      CHANGELOG.md
  2. 5
      lib/src/widgets/raw_editor.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.1.4]
* Fix inserting tab character in lists.
# [7.1.3]
* Fix ios cursor bug when word.length==1.

@ -669,8 +669,9 @@ class RawEditorState extends EditorState
if (parentBlock.style.containsKey(Attribute.ol.key) ||
parentBlock.style.containsKey(Attribute.ul.key) ||
parentBlock.style.containsKey(Attribute.checked.key)) {
if (node.isNotEmpty && (node.first as leaf.Text).value.isNotEmpty
&& controller.selection.base.offset > node.documentOffset) {
if (node.isNotEmpty &&
(node.first as leaf.Text).value.isNotEmpty &&
controller.selection.base.offset > node.documentOffset) {
return insertTabCharacter();
}
controller.indentSelection(!event.isShiftPressed);

@ -1,6 +1,6 @@
name: flutter_quill
description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us)
version: 7.1.3
version: 7.1.4
#author: bulletjournal
homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill

Loading…
Cancel
Save