Merge pull request #73736 from helviett/fix_visible_lines_calculation

Fix visible_lines calculation
This commit is contained in:
Rémi Verschelde 2023-02-22 14:50:06 +01:00
commit d8014e9fab
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -209,10 +209,7 @@ bool Label::_shape() {
// Fill after min_size calculation.
int visible_lines = lines_rid.size();
if (max_lines_visible >= 0 && visible_lines > max_lines_visible) {
visible_lines = max_lines_visible;
}
int visible_lines = get_visible_line_count();
if (autowrap_mode != TextServer::AUTOWRAP_OFF) {
bool lines_hidden = visible_lines > 0 && visible_lines < lines_rid.size();
if (lines_hidden) {