From 5b3f94e80711c36c12f33f8be6e0ec2c87fc9e2d Mon Sep 17 00:00:00 2001 From: Jonas Bernemann Date: Tue, 1 Jun 2021 22:56:43 +0200 Subject: [PATCH] Fix overflow in export template manager Fixes the possible overflow of buttons after downloading the current export template with using custom fonts or custom font size. Fix #48826 (cherry picked from commit 4659b2ad4a03bfff708d9007ff05dc60d0f2eac6) --- editor/export_template_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/editor/export_template_manager.cpp b/editor/export_template_manager.cpp index d86a98aab1d..7daa72b2be5 100644 --- a/editor/export_template_manager.cpp +++ b/editor/export_template_manager.cpp @@ -138,6 +138,8 @@ void ExportTemplateManager::_update_template_list() { installed_vb->add_child(hbc); } + + _fix_size(); } void ExportTemplateManager::_download_template(const String &p_version) {