Bug fix: Can not insert newline when Bold is toggled ON (#75)

* Bug fix: Can not insert newline when Bold is toggled ON

* Fix
pull/79/head
Xin Yao 4 years ago committed by GitHub
parent 17a38965c8
commit 14662c229d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      lib/widgets/controller.dart

@ -86,11 +86,22 @@ class QuillController extends ChangeNotifier {
print('document.replace failed: $e');
throw e;
}
final shouldRetainDelta = delta != null &&
bool shouldRetainDelta = delta != null &&
toggledStyle.isNotEmpty &&
delta.isNotEmpty &&
delta.length <= 2 &&
delta.last.isInsert;
if (shouldRetainDelta &&
toggledStyle.isNotEmpty &&
delta.length == 2 &&
delta.last.data == '\n') {
// if all attributes are inline, shouldRetainDelta should be false
final anyAttributeNotInline =
toggledStyle.values.any((attr) => !attr.isInline);
if (!anyAttributeNotInline) {
shouldRetainDelta = false;
}
}
if (shouldRetainDelta) {
Delta retainDelta = Delta()
..retain(index)

Loading…
Cancel
Save