diff --git a/lib/widgets/toolbar.dart b/lib/widgets/toolbar.dart index 9e819bac..94717217 100644 --- a/lib/widgets/toolbar.dart +++ b/lib/widgets/toolbar.dart @@ -669,7 +669,11 @@ class _ClearFormatButtonState extends State { size: 32, icon: Icon(widget.icon, size: 18, color: iconColor), fillColor: fillColor, -// onPressed: , + onPressed: () { + for (Attribute k in widget.controller.getSelectionStyle().attributes.values) { + widget.controller.formatSelection(Attribute.clone(k, null)); + } + } ); } }