-Completely removed EmptyControl (but added fallback), closes #1017

This commit is contained in:
Juan Linietsky
2015-01-03 17:24:16 -03:00
parent 0e1d70f637
commit dc7ac86b79
13 changed files with 35 additions and 35 deletions

View File

@ -1240,8 +1240,8 @@ ProjectExportDialog::ProjectExportDialog(EditorNode *p_editor) {
group_options->add_child(atlas_preview);
atlas_preview->show();
atlas_preview->connect("pressed",this,"_group_atlas_preview");
EmptyControl *ec = memnew(EmptyControl );
ec->set_minsize(Size2(150,1));
Control *ec = memnew(Control );
ec->set_custom_minimum_size(Size2(150,1));
gvb->add_child(ec);
VBoxContainer *group_vb_right = memnew( VBoxContainer );