From d9ccbc51b3c2b733541407f86a60b0f09252a43d Mon Sep 17 00:00:00 2001 From: singerdmx Date: Tue, 22 Dec 2020 16:40:52 -0800 Subject: [PATCH] Fix ResolveInlineFormatRule --- lib/models/rules/format.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/models/rules/format.dart b/lib/models/rules/format.dart index 4dfa866c..13f7b518 100644 --- a/lib/models/rules/format.dart +++ b/lib/models/rules/format.dart @@ -101,7 +101,7 @@ class ResolveInlineFormatRule extends FormatRule { @override Delta applyRule(Delta document, int index, {int len, Object data, Attribute attribute}) { - if (attribute.scope != AttributeScope.BLOCK) { + if (attribute.scope != AttributeScope.INLINE) { return null; }