mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Merge pull request #105247 from bruvzg/fix_nested_bbcode
Fix BBCode print with nested `[`.
This commit is contained in:
commit
e2b6a45e8d
1 changed files with 2 additions and 1 deletions
|
|
@ -257,7 +257,8 @@ void __print_line_rich(const String &p_string) {
|
|||
} else if (tag == "/fgcolor") {
|
||||
output += "\u001b[39;49m";
|
||||
} else {
|
||||
output += vformat("[%s]", tag);
|
||||
output += "[";
|
||||
pos = brk_pos + 1;
|
||||
}
|
||||
}
|
||||
output += "\u001b[0m"; // Reset.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue