fix: multiline styling stuck/not working properly (#1782)

pull/1788/head
wrth 1 year ago committed by GitHub
parent 142275fba4
commit a711840b8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      lib/src/models/documents/nodes/line.dart

@ -362,7 +362,7 @@ base class Line extends QuillContainer<Leaf?> {
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<Leaf?> {
final remaining = len - local;
if (remaining > 0 && nextLine != null) {
final rest = nextLine!.collectStyle(0, remaining);
result = result.mergeAll(rest);
handle(rest);
}

Loading…
Cancel
Save