Merge pull request #60867 from KoBeWi/μtext

Remove font height restriction from Button
This commit is contained in:
Rémi Verschelde 2022-05-17 19:02:35 +02:00 committed by GitHub
commit 3ad751f7e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,11 +60,11 @@ Size2 Button::get_minimum_size() const {
}
}
}
Ref<Font> font = get_theme_font(SNAME("font"));
float font_height = font->get_height(get_theme_font_size(SNAME("font_size")));
minsize.height = MAX(font_height, minsize.height);
if (!xl_text.is_empty()) {
Ref<Font> font = get_theme_font(SNAME("font"));
float font_height = font->get_height(get_theme_font_size(SNAME("font_size")));
minsize.height = MAX(font_height, minsize.height);
}
return get_theme_stylebox(SNAME("normal"))->get_minimum_size() + minsize;
}