Merge pull request #7349 from volzhs/fix-richtextlabel
Fix duplicated string on RichTextLabel if starts with '\n'
This commit is contained in:
commit
0f76c47be3
1 changed files with 2 additions and 1 deletions
|
@ -1179,7 +1179,8 @@ void RichTextLabel::add_text(const String& p_text) {
|
|||
item->line=current_frame->lines.size();
|
||||
_add_item(item,false);
|
||||
current_frame->lines.resize(current_frame->lines.size()+1);
|
||||
current_frame->lines[current_frame->lines.size()-1].from=item;
|
||||
if (item->type!=ITEM_NEWLINE)
|
||||
current_frame->lines[current_frame->lines.size()-1].from=item;
|
||||
_invalidate_current_line(current_frame);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue