Remove unused variable causing warnings

This commit is contained in:
Simon Döhl 2026-02-23 13:42:11 +01:00
parent a3e84cc2af
commit 33edf7f43c
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;