mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Editor Export Settings Dialog is completed!! Now on to make some exporters..
This commit is contained in:
@@ -272,7 +272,7 @@ void AcceptDialog::_update_child_rects() {
|
||||
if (!c)
|
||||
continue;
|
||||
|
||||
if (c==hbc || c==label || c==get_close_button())
|
||||
if (c==hbc || c==label || c==get_close_button() || c->is_set_as_toplevel())
|
||||
continue;
|
||||
|
||||
c->set_pos(cpos);
|
||||
@@ -299,7 +299,7 @@ Size2 AcceptDialog::get_minimum_size() const {
|
||||
if (!c)
|
||||
continue;
|
||||
|
||||
if (c==hbc || c==label || c==const_cast<AcceptDialog*>(this)->get_close_button())
|
||||
if (c==hbc || c==label || c==const_cast<AcceptDialog*>(this)->get_close_button() || c->is_set_as_toplevel())
|
||||
continue;
|
||||
|
||||
Size2 cminsize = c->get_combined_minimum_size();
|
||||
|
||||
Reference in New Issue
Block a user