diff options
author | Duroxxigar <young9003@gmail.com> | 2020-10-01 03:17:33 -0400 |
---|---|---|
committer | Duroxxigar <young9003@gmail.com> | 2020-10-01 03:17:33 -0400 |
commit | b687ace7f9465faa3d3aee271a8dc950c0d1ed4b (patch) | |
tree | 6cd5149a27a6de7b12c5ee2d4a52e55503da4f54 /scene/gui/center_container.cpp | |
parent | cbcec0d0567b0b5e173f1e9f90f2c03317156275 (diff) | |
download | redot-engine-b687ace7f9465faa3d3aee271a8dc950c0d1ed4b.tar.gz |
Renamed toplevel to be top_level
Diffstat (limited to 'scene/gui/center_container.cpp')
-rw-r--r-- | scene/gui/center_container.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/gui/center_container.cpp b/scene/gui/center_container.cpp index f8f9bec3d7..1a72f3ca4d 100644 --- a/scene/gui/center_container.cpp +++ b/scene/gui/center_container.cpp @@ -40,7 +40,7 @@ Size2 CenterContainer::get_minimum_size() const { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } if (!c->is_visible()) { @@ -77,7 +77,7 @@ void CenterContainer::_notification(int p_what) { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } |