Fix empty reference pages after restarting Godot
This commit is contained in:
parent
4c4ab140b4
commit
18f165b494
1 changed files with 3 additions and 1 deletions
|
@ -662,7 +662,9 @@ void RichTextLabel::_notification(int p_what) {
|
|||
} break;
|
||||
case NOTIFICATION_ENTER_TREE: {
|
||||
|
||||
set_bbcode(bbcode);
|
||||
if (bbcode != "")
|
||||
set_bbcode(bbcode);
|
||||
|
||||
main->first_invalid_line=0; //invalidate ALL
|
||||
update();
|
||||
|
||||
|
|
Loading…
Reference in a new issue