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 /editor/editor_inspector.cpp | |
| parent | cbcec0d0567b0b5e173f1e9f90f2c03317156275 (diff) | |
| download | redot-engine-b687ace7f9465faa3d3aee271a8dc950c0d1ed4b.tar.gz | |
Renamed toplevel to be top_level
Diffstat (limited to 'editor/editor_inspector.cpp')
| -rw-r--r-- | editor/editor_inspector.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 2e716a636e..9900e8184d 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -48,7 +48,7 @@ Size2 EditorProperty::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()) { @@ -117,7 +117,7 @@ void EditorProperty::_notification(int p_what) { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } if (c == bottom_editor) { @@ -179,7 +179,7 @@ void EditorProperty::_notification(int p_what) { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } if (c == bottom_editor) { @@ -1133,7 +1133,7 @@ void EditorInspectorSection::_notification(int p_what) { if (!c) { continue; } - if (c->is_set_as_toplevel()) { + if (c->is_set_as_top_level()) { continue; } if (!c->is_visible_in_tree()) { @@ -1225,7 +1225,7 @@ Size2 EditorInspectorSection::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()) { |
