Fix custom text style of lists not work (#1207)

pull/1208/head
shenjingfs 2 years ago committed by GitHub
parent aab7ee8f61
commit 1149d03199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/src/widgets/text_line.dart

@ -282,7 +282,7 @@ class _TextLineState extends State<TextLine> {
toMerge = defaultStyles.quote!.style;
} else if (block == Attribute.codeBlock) {
toMerge = defaultStyles.code!.style;
} else if (block == Attribute.list) {
} else if (block?.key == Attribute.list.key) {
toMerge = defaultStyles.lists!.style;
}

Loading…
Cancel
Save