Fix bug with keepStyleOnNewLine for link (#1374)

pull/1376/head
Egor Korshun 2 years ago committed by GitHub
parent 04fc2e2f9d
commit 0a0b54dde8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      CHANGELOG.md
  2. 6
      lib/src/widgets/controller.dart

@ -1,3 +1,6 @@
# [7.4.2]
- Fix bug with keepStyleOnNewLine for link.
# [7.4.1]
- Fix toolbar dividers condition.

@ -400,8 +400,10 @@ class QuillController extends ChangeNotifier {
extentOffset: math.min(selection.extentOffset, end));
if (_keepStyleOnNewLine) {
final style = getSelectionStyle();
final notInlineStyle = style.attributes.values.where((s) => !s.isInline);
toggledStyle = style.removeAll(notInlineStyle.toSet());
final ignoredStyles = style.attributes.values.where(
(s) => !s.isInline || s.key == Attribute.link.key,
);
toggledStyle = style.removeAll(ignoredStyles.toSet());
} else {
toggledStyle = Style();
}

Loading…
Cancel
Save