diff --git a/src/dlangui/core/editable.d b/src/dlangui/core/editable.d index e73f1301..74b1a744 100644 --- a/src/dlangui/core/editable.d +++ b/src/dlangui/core/editable.d @@ -503,8 +503,10 @@ class EditableContent { @property EditableContent syntaxHighlighter(SyntaxHighlighter syntaxHighlighter) { _syntaxHighlighter = syntaxHighlighter; - _syntaxHighlighter.content = this; - updateTokenProps(0, cast(int)_lines.length); + if (_syntaxHighlighter) { + _syntaxHighlighter.content = this; + updateTokenProps(0, cast(int)_lines.length); + } return this; }