Update clear_format_button.dart

When you delete the format, the data is not deleted
pull/1340/head
Abbas Hussein 2 years ago
parent e996c9bd69
commit 61f0e37145
  1. 4
      lib/src/widgets/toolbar/clear_format_button.dart

@ -48,7 +48,9 @@ class _ClearFormatButtonState extends State<ClearFormatButton> {
onPressed: () {
final attrs = <Attribute>{};
for (final style in widget.controller.getAllSelectionStyles()) {
for (final attr in style.attributes.values) {
for (final attr in style.attributes.values.skipWhile(
(value) => value.key.contains(Attribute.data.key),
)) {
attrs.add(attr);
}
}

Loading…
Cancel
Save