1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

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
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;
}
}