Browse Source

Merge pull request #37599 from YeldhamDev/export_feat_panel_remove

Remove unnecessary Panel in "Features" section in the Export dialog
Rémi Verschelde 5 years ago
parent
commit
924cecf0b0
1 changed files with 1 additions and 4 deletions
  1. 1 4
      editor/project_export.cpp

+ 1 - 4
editor/project_export.cpp

@@ -1205,12 +1205,9 @@ ProjectExportDialog::ProjectExportDialog() {
 	custom_features = memnew(LineEdit);
 	custom_features->connect("text_changed", callable_mp(this, &ProjectExportDialog::_custom_features_changed));
 	feature_vb->add_margin_child(TTR("Custom (comma-separated):"), custom_features);
-	Panel *features_panel = memnew(Panel);
 	custom_feature_display = memnew(RichTextLabel);
-	features_panel->add_child(custom_feature_display);
-	custom_feature_display->set_anchors_and_margins_preset(Control::PRESET_WIDE, Control::PRESET_MODE_MINSIZE, 10 * EDSCALE);
 	custom_feature_display->set_v_size_flags(Control::SIZE_EXPAND_FILL);
-	feature_vb->add_margin_child(TTR("Feature List:"), features_panel, true);
+	feature_vb->add_margin_child(TTR("Feature List:"), custom_feature_display, true);
 	sections->add_child(feature_vb);
 
 	// Script export parameters.