Revert "Fix min size bug of Label"
This commit is contained in:
parent
f4ff30dff0
commit
45d1ffd611
|
@ -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()+line_spacing)*max_lines_visible;
|
||||
minsize.height=(font->get_height() * max_lines_visible) + (line_spacing * (max_lines_visible - 1));
|
||||
} else {
|
||||
minsize.height=(font->get_height()+line_spacing)*line_count;
|
||||
minsize.height=(font->get_height() * line_count)+(line_spacing * (line_count - 1));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue