diff --git a/lib/models/rules/insert.dart b/lib/models/rules/insert.dart index b62eb26d..bf1f65cb 100644 --- a/lib/models/rules/insert.dart +++ b/lib/models/rules/insert.dart @@ -75,7 +75,7 @@ class PreserveBlockStyleOnInsertRule extends InsertRule { Style.fromJson(nextNewLine.item1?.attributes ?? {}); Attribute attribute = lineStyle.getBlockExceptHeader(); - if (attribute != null) { + if (attribute == null) { return null; }