You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 19:11:41 +00:00
Merge pull request #56586 from dalexeev/rtl-bracket-escapes
This commit is contained in:
@@ -3066,6 +3066,12 @@ void RichTextLabel::append_text(const String &p_bbcode) {
|
||||
push_strikethrough();
|
||||
pos = brk_end + 1;
|
||||
tag_stack.push_front(tag);
|
||||
} else if (tag == "lb") {
|
||||
add_text("[");
|
||||
pos = brk_end + 1;
|
||||
} else if (tag == "rb") {
|
||||
add_text("]");
|
||||
pos = brk_end + 1;
|
||||
} else if (tag == "lrm") {
|
||||
add_text(String::chr(0x200E));
|
||||
pos = brk_end + 1;
|
||||
|
||||
Reference in New Issue
Block a user