diff --git a/editor/editor_log.cpp b/editor/editor_log.cpp index 803d7e10f74..1658f19cccd 100644 --- a/editor/editor_log.cpp +++ b/editor/editor_log.cpp @@ -132,7 +132,6 @@ void EditorLog::_bind_methods() { EditorLog::EditorLog() { VBoxContainer *vb = this; - add_constant_override("separation", get_constant("separation", "VBoxContainer")); HBoxContainer *hb = memnew(HBoxContainer); vb->add_child(hb); @@ -163,6 +162,8 @@ EditorLog::EditorLog() { current = Thread::get_caller_id(); + add_constant_override("separation", get_constant("separation", "VBoxContainer")); + EditorNode::get_undo_redo()->set_commit_notify_callback(_undo_redo_cbk, this); }