From 1d900afa70ac0c5b188978c7b7ced9a478616358 Mon Sep 17 00:00:00 2001 From: singerdmx Date: Sat, 26 Dec 2020 23:15:47 -0800 Subject: [PATCH] Fix append \n for image in _transform --- lib/models/documents/document.dart | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/models/documents/document.dart b/lib/models/documents/document.dart index 9db9a4ff..0781d203 100644 --- a/lib/models/documents/document.dart +++ b/lib/models/documents/document.dart @@ -167,6 +167,11 @@ class Document { Delta res = Delta(); for (Operation op in delta.toList()) { res.push(op); + if (op.isInsert && op.data is! String) { + // This case is 'insert embed' + // automatically append '\n' for image + res.push(Operation.insert('\n', null)); + } } return res; } @@ -202,12 +207,6 @@ class Document { final data = _normalize(op.data); _root.insert(offset, data, style); offset += op.length; - if (data is! String) { - // This case is 'insert embed' - // automatically append '\n' for image - _root.insert(offset, '\n', null); - offset++; - } } final node = _root.last; if (node is Line &&