mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 14:42:48 +00:00
parent
64fd75d91a
commit
f792f63b03
@ -488,9 +488,9 @@ void Label::regenerate_word_cache() {
|
||||
if (!autowrap) {
|
||||
minsize.width=width;
|
||||
if (max_lines_visible > 0 && line_count > max_lines_visible) {
|
||||
minsize.height=(font->get_height() * max_lines_visible) + (line_spacing * (max_lines_visible - 1));
|
||||
minsize.height=(font->get_height()+line_spacing)*max_lines_visible;
|
||||
} else {
|
||||
minsize.height=(font->get_height() * line_count)+(line_spacing * (line_count - 1));
|
||||
minsize.height=(font->get_height()+line_spacing)*line_count;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user