Revert "Fixes the get_visible_line_count() of rich text label"

This reverts commit dc7e9d46e6.
This commit is contained in:
Rémi Verschelde 2020-08-17 11:21:36 +02:00
parent c1a5e9f513
commit a6ef6b10b2
1 changed files with 2 additions and 2 deletions

View File

@ -1021,8 +1021,8 @@ void RichTextLabel::_notification(int p_what) {
visible_line_count = 0; visible_line_count = 0;
while (y < size.height && from_line < main->lines.size()) { while (y < size.height && from_line < main->lines.size()) {
visible_line_count++;
_process_line(main, text_rect.get_position(), y, text_rect.get_size().width - scroll_w, from_line, PROCESS_DRAW, base_font, base_color, font_color_shadow, use_outline, shadow_ofs, Point2i(), NULL, NULL, NULL, total_chars); visible_line_count += _process_line(main, text_rect.get_position(), y, text_rect.get_size().width - scroll_w, from_line, PROCESS_DRAW, base_font, base_color, font_color_shadow, use_outline, shadow_ofs, Point2i(), NULL, NULL, NULL, total_chars);
total_chars += main->lines[from_line].char_count; total_chars += main->lines[from_line].char_count;
from_line++; from_line++;