diff --git a/lib/src/models/documents/nodes/line.dart b/lib/src/models/documents/nodes/line.dart index 6fe3809b..86f2b499 100644 --- a/lib/src/models/documents/nodes/line.dart +++ b/lib/src/models/documents/nodes/line.dart @@ -362,7 +362,7 @@ base class Line extends QuillContainer { void handle(Style style) { for (final attr in result.values) { if (!style.containsKey(attr.key) || - (style.attributes[attr.key] != attr.value)) { + (style.attributes[attr.key]?.value != attr.value)) { excluded.add(attr); } } @@ -390,6 +390,7 @@ base class Line extends QuillContainer { final remaining = len - local; if (remaining > 0 && nextLine != null) { final rest = nextLine!.collectStyle(0, remaining); + result = result.mergeAll(rest); handle(rest); }