Merge pull request #116661 from TheDying0fLight/remove-unused-editor-variable

Remove unused `edit_hb` variable in `TextEditorBase` which causes warnings
This commit is contained in:
Thaddeus Crews 2026-02-23 11:59:06 -06:00
commit c99494be4d
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
2 changed files with 0 additions and 3 deletions

View file

@ -645,8 +645,6 @@ TextEditorBase::TextEditorBase() {
context_menu->connect(SceneStringName(id_pressed), callable_mp(this, &TextEditorBase::_edit_option));
add_child(context_menu);
edit_hb = memnew(HBoxContainer);
goto_line_popup = memnew(GotoLinePopup);
add_child(goto_line_popup);

View file

@ -161,7 +161,6 @@ protected:
bool editor_enabled = false;
CodeTextEditor *code_editor = nullptr;
HBoxContainer *edit_hb = nullptr;
GotoLinePopup *goto_line_popup = nullptr;