mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Merge pull request #90274 from AThousandShips/syntax_fix
Fix potential null access in `TextEdit`
This commit is contained in:
commit
82b0186372
@ -8143,7 +8143,7 @@ void TextEdit::_update_gutter_width() {
|
||||
|
||||
/* Syntax highlighting. */
|
||||
Dictionary TextEdit::_get_line_syntax_highlighting(int p_line) {
|
||||
return syntax_highlighter.is_null() && !setting_text ? Dictionary() : syntax_highlighter->get_line_syntax_highlighting(p_line);
|
||||
return (syntax_highlighter.is_null() || setting_text) ? Dictionary() : syntax_highlighter->get_line_syntax_highlighting(p_line);
|
||||
}
|
||||
|
||||
/* Deprecated. */
|
||||
|
Loading…
Reference in New Issue
Block a user