From 31ded7e126b9d71ed8dddab9ffc1ce813f1a8ec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 9 Dec 2021 11:40:46 +0100 Subject: [PATCH] Fixup last commit, change misleading CodeEditor for consistency --- editor/code_editor.cpp | 6 +++--- editor/plugins/material_editor_plugin.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index e197c13c14c0..371ea17c6875 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -624,7 +624,7 @@ FindReplaceBar::FindReplaceBar() { vbc_lineedit = memnew(VBoxContainer); add_child(vbc_lineedit); - vbc_lineedit->set_alignment(ALIGNMENT_CENTER); + vbc_lineedit->set_alignment(BoxContainer::ALIGNMENT_CENTER); vbc_lineedit->set_h_size_flags(SIZE_EXPAND_FILL); VBoxContainer *vbc_button = memnew(VBoxContainer); add_child(vbc_button); @@ -633,10 +633,10 @@ FindReplaceBar::FindReplaceBar() { HBoxContainer *hbc_button_search = memnew(HBoxContainer); vbc_button->add_child(hbc_button_search); - hbc_button_search->set_alignment(ALIGNMENT_END); + hbc_button_search->set_alignment(BoxContainer::ALIGNMENT_END); hbc_button_replace = memnew(HBoxContainer); vbc_button->add_child(hbc_button_replace); - hbc_button_replace->set_alignment(ALIGNMENT_END); + hbc_button_replace->set_alignment(BoxContainer::ALIGNMENT_END); HBoxContainer *hbc_option_search = memnew(HBoxContainer); vbc_option->add_child(hbc_option_search); diff --git a/editor/plugins/material_editor_plugin.cpp b/editor/plugins/material_editor_plugin.cpp index 68107d463d6e..bfbe6e26a997 100644 --- a/editor/plugins/material_editor_plugin.cpp +++ b/editor/plugins/material_editor_plugin.cpp @@ -125,7 +125,7 @@ MaterialEditor::MaterialEditor() { // canvas item layout_2d = memnew(HBoxContainer); - layout_2d->set_alignment(ALIGNMENT_CENTER); + layout_2d->set_alignment(BoxContainer::ALIGNMENT_CENTER); add_child(layout_2d); layout_2d->set_anchors_and_offsets_preset(PRESET_WIDE);