diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-10-02 10:57:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 10:57:23 +0200 |
commit | 19f72beebbf1d233eb2dd345ed70a5ac143e2353 (patch) | |
tree | 28c662bf150132e6f33271add84ff855cfe05767 /editor/animation_track_editor.cpp | |
parent | a1c27228ae6c160391133a0894880d977058da8f (diff) | |
parent | b687ace7f9465faa3d3aee271a8dc950c0d1ed4b (diff) |
Merge pull request #42451 from Duroxxigar/rename-toplevel
Renamed toplevel to be top_level
Diffstat (limited to 'editor/animation_track_editor.cpp')
-rw-r--r-- | editor/animation_track_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/animation_track_editor.cpp b/editor/animation_track_editor.cpp index 39e863ae0f..52c984cbc0 100644 --- a/editor/animation_track_editor.cpp +++ b/editor/animation_track_editor.cpp @@ -5758,7 +5758,7 @@ AnimationTrackEditor::AnimationTrackEditor() { box_selection = memnew(Control); add_child(box_selection); - box_selection->set_as_toplevel(true); + box_selection->set_as_top_level(true); box_selection->set_mouse_filter(MOUSE_FILTER_IGNORE); box_selection->hide(); box_selection->connect("draw", callable_mp(this, &AnimationTrackEditor::_box_selection_draw)); |