Merge pull request #49174 from NoFr1ends/fix-richtext-theme-update-3

[RichTextLabel] Fix not updating fonts when parent theme changes
This commit is contained in:
Rémi Verschelde 2021-05-31 12:40:59 +02:00 committed by GitHub
commit 7713f33cd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -959,6 +959,7 @@ void RichTextLabel::_notification(int p_what) {
update();
} break;
case NOTIFICATION_THEME_CHANGED:
case NOTIFICATION_ENTER_TREE: {
if (bbcode != "") {
set_bbcode(bbcode);
@ -967,10 +968,6 @@ void RichTextLabel::_notification(int p_what) {
main->first_invalid_line = 0; //invalidate ALL
update();
} break;
case NOTIFICATION_THEME_CHANGED: {
update();
} break;
case NOTIFICATION_DRAW: {
_validate_line_caches(main);