Upgrade to 7.1.14

pull/1198/head
Cheryl 2 years ago
parent 89b06c07e9
commit 8a4a980d6a
  1. 3
      CHANGELOG.md
  2. 2
      lib/src/models/documents/nodes/line.dart
  3. 7
      lib/src/widgets/controller.dart
  4. 2
      pubspec.yaml

@ -1,3 +1,6 @@
# [7.1.14]
- Add indents change for multiline selection.
# [7.1.13]
- Add custom recognizer.

@ -489,7 +489,7 @@ class Line extends Container<Leaf?> {
final remaining = len - local;
if (remaining > 0 && nextLine != null) {
final rest =
nextLine!.collectAllStylesWithOffsets(0, remaining, beg: local);
nextLine!.collectAllStylesWithOffsets(0, remaining, beg: local);
result.addAll(rest);
}

@ -136,9 +136,10 @@ class QuillController extends ChangeNotifier {
final indent = style.value.attributes[Attribute.indent.key];
final formatIndex = math.max(style.offset, selection.start);
final formatLength = math.min(
style.offset + (style.length ?? 0),
selection.end,
) - style.offset;
style.offset + (style.length ?? 0),
selection.end,
) -
style.offset;
Attribute? formatAttribute;
if (indent == null) {
if (isIncrease) {

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

Loading…
Cancel
Save