From 648f00d68bb17d085eaf371e6c11c3cdc0f504d1 Mon Sep 17 00:00:00 2001 From: li3317 Date: Fri, 25 Dec 2020 16:31:13 -0500 Subject: [PATCH] add clear format --- lib/widgets/toolbar.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)); + } + } ); } }