Fix: spellcheck highlight text into code-block and when readOnly is true

pull/2118/head
CatHood0 8 months ago
parent 35b8771db9
commit f2ef956293
  1. 3
      lib/src/editor/widgets/text/text_line.dart

@ -405,7 +405,8 @@ class _TextLineState extends State<TextLine> {
}
// verify is node is not link because we never need check a link word
if (!isLink) {
// and avoid to show highlighting when is only reading
if (!isLink && !widget.readOnly && !widget.line.style.attributes.containsKey('code-block')) {
final service = SpellcheckerServiceProvider.instance;
final spellcheckedSpans = service.fetchSpellchecker(textNode.value);
if (spellcheckedSpans != null && spellcheckedSpans.isNotEmpty) {

Loading…
Cancel
Save