Merge pull request #72149 from MinusKube/rich_text_visible_chars_bug

Fix char offset calculation when processing RichTextLabel line caches
This commit is contained in:
Rémi Verschelde 2023-01-27 10:30:15 +01:00
commit af1ef4c94f
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -2808,7 +2808,7 @@ void RichTextLabel::_process_line_caches() {
int ctrl_height = get_size().height;
int fi = main->first_invalid_line.load();
int total_chars = (fi == 0) ? 0 : (main->lines[fi].char_offset + main->lines[fi].char_count);
int total_chars = main->lines[fi].char_offset;
float total_height = (fi == 0) ? 0 : _calculate_line_vertical_offset(main->lines[fi - 1]);
for (int i = fi; i < (int)main->lines.size(); i++) {