From 800d5567a1c6af124ce181007a4b01d949e83411 Mon Sep 17 00:00:00 2001 From: kobewi Date: Sun, 8 May 2022 00:25:35 +0200 Subject: [PATCH] Remove font height restriction from Button --- scene/gui/button.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scene/gui/button.cpp b/scene/gui/button.cpp index b7c1e674dde..e294060bbdd 100644 --- a/scene/gui/button.cpp +++ b/scene/gui/button.cpp @@ -60,11 +60,11 @@ Size2 Button::get_minimum_size() const { } } } - - Ref 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 = 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; }