Code Editor: Fix regression with using doc comments for code regions

This commit is contained in:
Danil Alexeev 2023-10-12 23:20:40 +03:00
parent b1371806ad
commit 881fe67d94
No known key found for this signature in database
GPG key ID: 124453E157DA8DC7
3 changed files with 9 additions and 4 deletions

View file

@ -907,6 +907,8 @@ void GDScriptSyntaxHighlighter::add_color_region(const String &p_start_key, cons
ERR_FAIL_COND_MSG(color_regions[i].start_key == p_start_key, "color region with start key '" + p_start_key + "' already exists.");
if (p_start_key.length() < color_regions[i].start_key.length()) {
at++;
} else {
break;
}
}