diff options
author | qichunren <whyruby@gmail.com> | 2018-12-07 10:39:16 +0800 |
---|---|---|
committer | qichunren <whyruby@gmail.com> | 2018-12-11 16:13:14 +0800 |
commit | 99f9af868a6994ddf6622172ec98961fdd37988e (patch) | |
tree | 3f6653503da26f71ec1aa117dc9cf9f4d0240f8c /editor | |
parent | ce3f3a9f82545b71a819c32e2c134a55d9d564f2 (diff) |
Fix ExportDialog layout out of boundary when select a template.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/project_export.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/project_export.cpp b/editor/project_export.cpp index 557aac021d..f82133e0d3 100644 --- a/editor/project_export.cpp +++ b/editor/project_export.cpp @@ -298,6 +298,7 @@ void ProjectExportDialog::_edit_preset(int p_index) { custom_features->set_text(current->get_custom_features()); _update_feature_list(); _update_export_all(); + minimum_size_changed(); updating = false; } @@ -1173,6 +1174,7 @@ ProjectExportDialog::ProjectExportDialog() { export_pck_zip->connect("file_selected", this, "_export_pck_zip_selected"); export_error = memnew(Label); + export_error->set_autowrap(true); main_vb->add_child(export_error); export_error->hide(); export_error->add_color_override("font_color", EditorNode::get_singleton()->get_gui_base()->get_color("error_color", "Editor")); |