Merge pull request #29539 from qarmin/fix_crash_with_get_keywords_color

Fix crash with get_keywords_color
This commit is contained in:
Rémi Verschelde 2019-06-11 14:19:18 +02:00 committed by GitHub
commit d8877d2df5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -4682,6 +4682,8 @@ bool TextEdit::has_keyword_color(String p_keyword) const {
}
Color TextEdit::get_keyword_color(String p_keyword) const {
ERR_FAIL_COND_V(!keywords.has(p_keyword), Color())
return keywords[p_keyword];
}