Merge pull request #24112 from allkhor/rich_label_update_cache

RichTextLabel: update the cache when the scroll hide.
This commit is contained in:
Rémi Verschelde 2018-12-03 17:32:04 +01:00 committed by GitHub
commit e6b0327c2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -765,19 +765,17 @@ void RichTextLabel::_update_scroll() {
if (exceeds) {
scroll_visible = true;
main->first_invalid_line = 0;
scroll_w = vscroll->get_combined_minimum_size().width;
vscroll->show();
vscroll->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_END, -scroll_w);
_validate_line_caches(main);
} else {
scroll_visible = false;
vscroll->hide();
scroll_w = 0;
_validate_line_caches(main);
vscroll->hide();
}
main->first_invalid_line = 0; //invalidate ALL
_validate_line_caches(main);
}
}
@ -1616,7 +1614,6 @@ void RichTextLabel::clear() {
main->lines.clear();
main->lines.resize(1);
main->first_invalid_line = 0;
scroll_w = 0;
update();
selection.click = NULL;
selection.active = false;